Help for this page
for(1..10){ $x= $_ > 5 && 'foo' || 'bar'; print "$_:$x\n"; }
print"$_:${[$_>5&&'foo'||'bar']}[0]\n"for 1..10;