Help for this page

Select Code to Download


  1. or download this
    # current output
    directive: v0 v1 v2 v3 v4 v5
    ...
    # desired output
    directive: v0 v1 v2 v3
    directive: v4 v5
    
  2. or download this
    print "directive: ";
    for my $var (@vars) {
      print munge_var($var), " ";
    }
    print "\n";
    
  3. or download this
    my $v_count = 0;
    print "directive: ";
    ...
      }
    }
    print "\n";
    
  4. or download this
    my $v_count = 0;
    for my $var (@vars) {
    ...
      print &munge_var($var), " ";
    }
    print "\n";