Created
November 26, 2010 05:54
-
-
Save MelanieS/716328 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
def hug | |
puts 'Wraps arms around' | |
end | |
def cookies | |
puts 'bakes cookies' | |
end | |
def massage | |
puts 'rubs back' | |
end | |
def love | |
puts 'I love you' | |
var = rand(3) | |
var = var + 1 | |
if var == 1 | |
hug | |
elsif var == 2 | |
cookies | |
elsif var == 3 | |
massage | |
end | |
end | |
love |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment