Help for this page

Select Code to Download


  1. or download this
    foo() + bar() + baz()
      1      2
         3           4
                  5
    
  2. or download this
    #! /usr/bin/perl
    use strict;
    ...
    Creating 4
    Evaluating 3 + 4
    Creating 7
    
  3. or download this
    my $foo = 0;
    print ++$foo + $foo++;