- or download this
@obj_args = qw/ arg1 arg2 arg3 arg4 arg5 arg19 gee37 /;
for ( @obj_args ) {
...
}
- or download this
# @objargs = qw/ arg1 arg2 arg3 arg4 arg5 gee37 /;
#
...
for ( @objargs ) {
...
}
- or download this
#for (map("arg$_", 1..5, 19), "gee37") {
#
...
for ( qw/ arg3 gee37 / ) {
...
}
- or download this
(map("arg$_", 1..5, 19), "gee37")