Help for this page

Select Code to Download


  1. or download this
    return $someval;
    print $someval;
    
  2. or download this
    sub a {
       print $variable;
    ...
    sub b {
        $variable;
       }
    
  3. or download this
    sub a {
       return sprintf("%s", $_[0]);
     }