Help for this page
# USING LOOPS (not gonna work right) my(@directives) = qw/ ... sub where { shift @directives } sub go { print @_ }
# USING SUBS TO EMULATE LOOP ITERATIONS ... go(@directives); # "go up, go down, go right, left, etc...