Skip to content

Instantly share code, notes, and snippets.

@niner
Created April 17, 2015 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niner/d278b67ec573b3a801fe to your computer and use it in GitHub Desktop.
Save niner/d278b67ec573b3a801fe to your computer and use it in GitHub Desktop.
nine@sunshine:~> perl -e 'print "foo\n" foreach 0..5;'
foo
foo
foo
foo
foo
foo
nine@sunshine:~> perl -e 'use v6; print "foo\n" for ^5;'
foo
foo
foo
foo
foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment