Created
December 4, 2019 03:09
-
-
Save kmicinski/30ccdf9bac51c1a8ccd989d6fee21c8b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
int foo() { return 1; } | |
int bar() { return 2; } | |
int main(int argc, char **argv) | |
{ | |
if (argc > 2) { foo(); } | |
if (argc < 3) { bar(); } | |
return 0; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment