- or download this
sub hello3 {
if ($nice) {
...
return "Get Lost!"
}
}
- or download this
sub hello3 {
return $nice ? "Hi" : "Get Lost!"
}
- or download this
print "you were asking for it!" unless $nice;
...
# more statements
return "hi"
}
- or download this
$nice > 0 or print "Now I am goin to teach you ...";