Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        my $ret = /9/g;
        print "($ret)\n"
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
        my $a = "";
        print "(" . ~$a . ")\n";
    }
    
  3. or download this
    (4294967295)
    (4294967294)
    ()
    
  4. or download this
    use strict;
    use warnings;
    ...
        my $ret;
        print ~ m/9/, "\n";
    }
    
  5. or download this
    4294967294
    4294967295
    
  6. or download this
    use strict;
    use warnings;
    ...
        print ~ ($ret = m/9/), "\n";
        print "($ret)\n";
    }
    
  7. or download this
    4294967294
    (1)
    4294967295
    ()