
moroshko
Novice
Jun 21, 2008, 1:24 PM
Post #1 of 3
(477 views)
|
|
"print" with "die" - What's wrong ??
|
Can't Post
|
|
Can anyone please explain me why the following program doesn't prints "123" ? How can I fix it so that "die"'s message will be printed after "print"'s message ? Thanks !! #!/usr/bin/perl use warnings; use strict; print 1; print 2; die "3\n";
|