Skip to content

Instantly share code, notes, and snippets.

@bryanwoods
Created September 17, 2008 19:48
Show Gist options
  • Save bryanwoods/11293 to your computer and use it in GitHub Desktop.
Save bryanwoods/11293 to your computer and use it in GitHub Desktop.
## Don't be fooled by the code that I block ##
# Don't be fooled by
def fooled
result = "Don't be fooled by \n"
return result
end
# The rocks that I've got
def rocks
result = "The rocks that I've got \n"
return result
end
# I'm still, I'm still
def imStill
result = "I'm still \n" * 2
return result
end
# Jenny from the block
def jenny(name)
result = name + " from the block \n"
return result
end
# Used to have a little now I have a lot
def usedta
result = "Used to have a little now I have a lot \n"
return result
end
# But no matter where I go
def nomatta
result = "But no matter where I go \n"
return result
end
# I still no where I came from
def something
result = "I still know where I came from \n"
return result
end
puts fooled
puts rocks
puts imStill
puts jenny("Jenny")
puts usedta
puts nomatta
puts something
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment