- or download this
if($x){
$y=1;
...
else{
$y=0;
}
- or download this
$y = $x ? 1 : 0;
- or download this
$x ? $y=1 : $y=0;
- or download this
$x ? $y=1 : $y=~s/.*/0/;
- or download this
$x ? $y=1 : ($y=~s/.*/0/)
- or download this
$x ? $y=1 : ($y=0);
- or download this
$y = $x ? 1 : 0;
- or download this
$x = ((((((1 * 2) * 3) * (4 ** 2)) * 5) * 6) * 7)