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