Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    $x = 3;
    $x .= "abc";
    ++$x;
    
  2. or download this
    use strict;
    use warnings;
    ...
          goto &$AUTOLOAD;
       }
    }