in reply to Re^4: A Beginner Needs Homework help
in thread A Beginner Needs Homework help
did you mean an "while" loop or a if/or statement? or another ARGV?
I meant in english :)
See print, see return, see exit, see die
Main( @ARGV ); exit( 0 ); sub Main { for my $file ( @_ ){ TryAndDoStuffOrDieAndEndProgram( $file ); } } sub TryAndDoStuffOrDieAndEndProgram { open ... or die "Can't open ($file): $! "; ... close ... return; }
There are other moves than AndEndProgram, like move on to next file, see die/eval
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: A Beginner Needs Homework help
by Swizzlestix617 (Novice) on Apr 11, 2014 at 01:40 UTC | |
by Anonymous Monk on Apr 11, 2014 at 21:37 UTC |