Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            ($_>5 ? $x : $y) = 'bar';
            print "x=$x, y=$y\n";
    }
    
  2. or download this
    x=baz, y=bar
    x=baz, y=bar
    ...
    x=bar, y=bar
    x=bar, y=bar
    x=bar, y=bar