Help for this page

Select Code to Download


  1. or download this
    local our $foo = 1;
    Dance();
    sub Dance { 
        print "I win, $foo\n";
    }
    
  2. or download this
    Dance( 1 );
    sub Dance {
        my( $foo ) = @_;
        print "I win, $foo\n";
    }