Help for this page

Select Code to Download


  1. or download this
    sub trinary {
        my $a = 1;
    ...
        trinary => \&trinary,
        if_else => \&if_else,
    });
    
  2. or download this
    sub if_else {
        my $a = 1;
        my $b = 0;
        return $a if $a > $b;
        return $b;
    }