Help for this page

Select Code to Download


  1. or download this
        #!/usr/bin/perl
        print "hello\n";
    
  2. or download this
        $ perl script.pl
    
  3. or download this
        #!/some/weird/line/containing/perl
        print "hello\n";
    
  4. or download this
        #!/usr/local/bin/python
        print "python!"
    
  5. or download this
     
        $ perl script.py
    
  6. or download this
    #!Some Weird Comment
    print "perl!";
    
  7. or download this
    $ perl script.pl
    Can't exec Some at t1 line 1.