Skip to content

Instantly share code, notes, and snippets.

@gizmoguy
Created December 11, 2012 02:46
Show Gist options
  • Save gizmoguy/4255503 to your computer and use it in GitHub Desktop.
Save gizmoguy/4255503 to your computer and use it in GitHub Desktop.
void main() {
/*
* This is my main function
*/
while (1) {
if (this == that) {
return;
}
if (this == foo) {
if (this == bar) {
/* Success */
return 1;
}
}
}
for (i = 1; i < 10; i++) {
/* print some stuff */
print("thing");
}
}
void print(mesg) {
printf("%s\n", mesg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment