Help for this page

Select Code to Download


  1. or download this
    sub function_cat {
      print "cat";
    ...
    sub function_dog {
      print "dog";
    }
    
  2. or download this
    sub function_x {
      print $x;
    }
    
    function_tiger(); # yields "tiger"