Created
February 16, 2012 10:38
-
-
Save juliancheal/1843948 to your computer and use it in GitHub Desktop.
A Ruby poem for Dev8d 2012
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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