Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
       print "$_\n";
    }
    print "done \n";
    
  2. or download this
    int main(int argc, char** argv) {
        printf ("Hello World \n");
    ...
     // system("PAUSE");
        return (EXIT_SUCCESS);
    }