- or download this
sub foo {
if (0) { # <- Last statement executed
1
}
} # Foo returned 0.
- or download this
sub foo {
if (2) {
3 # <- Last statement executed
}
} # Foo returned 3.
- or download this
sub foo {
return 4; # <- Last statement executed
5
} # Foo returned 4.