Skip to content

Instantly share code, notes, and snippets.

@juliancheal
Created February 16, 2012 10:38
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 juliancheal/1843948 to your computer and use it in GitHub Desktop.
Save juliancheal/1843948 to your computer and use it in GitHub Desktop.
A Ruby poem for Dev8d 2012
class Roses
def self.colour(*)
end
end
class Violets
def self.colour(*)
end
end
class Sugar
def self.flavour(*)
end
end
class I
def self.love(*)
end
end
Roses.colour("#FF0000")
Violets.colour("#0000FF")
Sugar.flavour == "sweet" && I.love("you")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment