Skip to content

Instantly share code, notes, and snippets.

@hynkle
Created August 5, 2011 19:49
Show Gist options
  • Save hynkle/1128345 to your computer and use it in GitHub Desktop.
Save hynkle/1128345 to your computer and use it in GitHub Desktop.
blockify lambda
# square evens; leave odds alone
[1,2,3,4,5,6,7,8].map &->(i) do
if i%2 == 0
return i**2
else
return i
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment