- or download this
map {/dothis/} @variable;
grep {/more stuff/} @more;
- or download this
map(sub {/dothis/}, @variable);
grep(sub {/more stuff/}, @more);
- or download this
print A "hello";
print $somevar, "can be seperated like this";
- or download this
print STDOUT $somevar, "can be seperated like this";