sub if_else { my $a = 1; my $b = 0; return $a if $a > $b; return $b; }