document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.   $ cat test.c
  2.         int test(char *a) {
  3.                 printf ("Testing arguments.. ");
  4.                 if (!strcmp (a, "foo")) {
  5.                         printf ("LE WIN!\\n");
  6.                         return 0;
  7.                 }
  8.                 printf ("FAILE!\\n");
  9.                 return 1;
  10.         }
  11.         int main(int argc, char **argv) {
  12.                 return test (argv[0]);
  13.         }
');