typedef enum {
FALSE=0,
TRUE
} boolean;
typedef struct {
int age;
char* name;
boolean employed;
char* occupation;
char* education;
} programmer_t;
programmer_t chris;
chris.age = 31;
chris.name = "Chris Browne";
chris.employed = TRUE;
chris.occupation = "Chief Architect";
chris.education = "self-taught";
I maintain an active interest in a plethora of programming languages, paradigms, and toolchains. I aspire to be language and tool agnostic.
Interests