Skip to content

Instantly share code, notes, and snippets.

@krokrob
Created January 7, 2016 10:32
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 krokrob/cce4c88aa8fb2503e5f9 to your computer and use it in GitHub Desktop.
Save krokrob/cce4c88aa8fb2503e5f9 to your computer and use it in GitHub Desktop.
my_variable = "hello" #snakecase
puts my_variable
my_variable += " world"
puts my_variable
def water_color(color = "blue")
return color
end
puts water_color("green")
puts water_color
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment