Help for this page

Select Code to Download


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