Help for this page

Select Code to Download


  1. or download this
    var() = foo() + bar() * baz();
    
  2. or download this
    var() = foo() + bar() * baz();
      6       1       2       3
          7       5       4
    
  3. or download this
    my $x;
    
    ...
    var() = foo() + bar() * baz();
    
    print($x);
    
  4. or download this
    >perl 709887.pl
    foo
    ...
    baz
    var
    23
    
  5. or download this
    >perl -le"$i=3; print 0+$i,$i,++$i,$i"
    3444