Help for this page

Select Code to Download


  1. or download this
    EXPR and last
      while not(condition)
    
  2. or download this
    use Fatal
    'unlink';
    
  3. or download this
        do { open(my $tty, "/dev/tty") && readline($tty) or die "nope: $!"
    + }
    
  4. or download this
        print @x;  # where's the "uninitialized value in print" warning?
        sub TIESCALAR { bless{} } sub FETCH { 42 } tie $x, "main"; print $
    +x