Help for this page

Select Code to Download


  1. or download this
    sub do_stuff {
        my($x) = ($_[0] || 0);
        ...
    }
    
  2. or download this
    my $x = 10;
    print $x, "\n";
    
    ...
    --output:--
    10
    10