Skip to content

Instantly share code, notes, and snippets.

@marka2g
Created March 18, 2013 01:48
Show Gist options
  • Save marka2g/5184480 to your computer and use it in GitHub Desktop.
Save marka2g/5184480 to your computer and use it in GitHub Desktop.
#closures and lambdas
#closure and lambdas
def tweet_as(user)
lambda {|tweet| puts "#{user}: #{tweet}"}
end
mark_tweet = tweet_as("mark")
mark_tweet.call("This is awesome!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment