Help for this page

Select Code to Download


  1. or download this
        "hello, world.\n";
    
  2. or download this
        print "hello, world.\n";
    
  3. or download this
        sub string {
            return ("hello, world.\n");
        }
        print string();
    
  4. or download this
        sub f1 { return ("hello, world.\n"); }
        sub pi { return (3.14159); }
    ...
        for (1..10) {
            print f1();
        }