Skip to content

Instantly share code, notes, and snippets.

@kamarcum
Created September 13, 2012 17:36
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 kamarcum/3716082 to your computer and use it in GitHub Desktop.
Save kamarcum/3716082 to your computer and use it in GitHub Desktop.
STRINGS ARE FUN
puts "Hello" + " world"
puts "What is your name?"
name = gets.chomp
def do_a_funny_cheer(probably_keith)
puts "laugh at #{probably_keith}"
# Give me a K! ad nauseum
end
do_a_funny_cheer(name)
# fizz buzz would be really cool here since they know %
# these are comments you don't have to type them
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment