diff --git a/test.txt b/test.txt index 3618350..1d4aeee 100755 --- a/test.txt +++ b/test.txt @@ -1,11 +1,14 @@ -#!./main - -// -*- C -*- +#!./main -*- C -*- #include +int foo(int a) +{ + return 42; +} + int main(int argc, char **argv) { - printf("hello, world\n"); + printf("hello, world %d\n", foo(argc)); return 0; }