Help for this page

Select Code to Download


  1. or download this
    while (@vars)
    {
            print "directive: ";
    ...
    
            print $/;
    }
    
  2. or download this
    sub print_directive
    {
            return unless @_;
    ...
    }
    
    print_directive @vars;