Help for this page

Select Code to Download


  1. or download this
        # the traditional way
        if ($zippy) {
    ...
        # the Perlish post-condition way
        print "Yow!" if $zippy;
    
  2. or download this
    my $x = 10;
    
    ...
    my $x = 5 if (1);
    
    print $x; #prints 5