Skip to content

Instantly share code, notes, and snippets.

@skids
Created June 18, 2013 05:47
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 skids/5802914 to your computer and use it in GitHub Desktop.
Save skids/5802914 to your computer and use it in GitHub Desktop.
Strange whitespace problem with sequence operator.
# This works in star 13 05
say 1, { $_ + 1 } ... * > 3;
# This does not
say 1, { $_ + 1 }
... * > 3;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment