harangzsolt33 has asked for the wisdom of the Perl Monks concerning the following question:
MyFunc(4, 5); sub MyFunc { print "Hello World!! :) @_ \n"; } MyFunc 3, 2;
If I flipped this around, then I'd get an error, but I don't understand why...:
MyFunc 3, 2; sub MyFunc { print "Hello World!! :) @_ \n"; } MyFunc(4, 5); # This program won't run! :(
|
---|