PERL programming question?

tolstoi1

New member
In this code, what does the exclamation point do?

# Make sure the user has specified source and destination files

if (@ARGV != 2)

{

print STDERR ("Usage: $0 source dest\n");

exit(1);

}
 
Back
Top