hi
How to print the number of arguments from @ARGV
according to the following script why its important to print
like
print q{don't have parameters};
And not as
print "don't have parameters"; ??
lidia
#!/usr/bin/perl
if (@ARGV) {
print ......
} else {
print q{don't have parameters};
}