Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    say "Intermediate";
    ENDING_BRACE:
    say "After";
    
  2. or download this
    {
        last if $gas_cost < 1;
        stuff here
    }
    continue here
    
  3. or download this
    func();
    continue here;
    ...
        return if $gas_cost < 1;
        stuff here
    }
    
  4. or download this
    if ($gas_cost >= 1) {
        stuff here
    }
    continue here