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