- or download this
sub halts {
my $machine = shift;
...
}
)
}
- or download this
BEGIN {
if( 0.5 < rand() ) {
...
}
}
whatever / 25 ; # / ; die "this dies!";
- or download this
> perl -MO=Deparse above.pl
# ...
...
whatever(/ 25 ; # /);
die 'this dies!';
- syntax OK