Created
July 4, 2015 13:26
-
-
Save Mon-Ouie/36954e5d46e86cc00676 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
//; def int(*args); end | |
//; def main(*args, &block); | |
//; Object.class_eval { define_method("foo", &block) }; foo; end | |
//; def argc; end | |
//; def char; 3; end | |
//; def argv; 3; end | |
int main(int argc, char ** argv) { | |
printf("Hello world!\n"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Mon-Ouie what's this about?