Skip to content

Instantly share code, notes, and snippets.

@janogonzalez
Created September 26, 2011 23:02
Show Gist options
  • Save janogonzalez/1243687 to your computer and use it in GitHub Desktop.
Save janogonzalez/1243687 to your computer and use it in GitHub Desktop.
Beatles - Love me do (The Ruby Way)
# rubytles.rb
class I
def self.love(s)
"I <3 #{s}"
end
end
def love(_, &block)
yield "you"
end
def know(s)
puts s
end
# Beatles loved the Ruby programming language
love(:me) do |you|
know I.love you
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment