#!./main -*- C -*- #include int foo(int a) { return 42; } int main(int argc, char **argv) { printf("hello, world %d\n", foo(argc)); return 0; }