/*
 * CS107 Lecture 1
 * ---------------
 * This program trivially relies on the bool type.
 */

#include <stdio.h>        // for printf
#include <stdbool.h>      // for bool

int main(int argc, char *argv[]) {
    bool x = true;
    printf("x as an int: %d\n", x);
    if (x) {
        printf("A) Hello, world!\n"); // choice A
    } else {
        printf("B) Howdy, world!\n"); // choice B
    }
    return 0;
}
