Help for this page

Select Code to Download


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