Skip to content

Instantly share code, notes, and snippets.

@Siddhant
Created March 6, 2012 14:34
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 Siddhant/1986576 to your computer and use it in GitHub Desktop.
Save Siddhant/1986576 to your computer and use it in GitHub Desktop.
temporarily confused !
> for map { $_, $_}, 1..3 { .say;}
Confused
> for map {$_, $_}, 1..3 {.say;}
1
1
2
2
3
3
> for map { $_, $_}, 1..3 { .say;}
1
1
2
2
3
3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment