Skip to content

Instantly share code, notes, and snippets.

@FalkoJoseph
Created August 6, 2011 15:52
Show Gist options
  • Save FalkoJoseph/1129454 to your computer and use it in GitHub Desktop.
Save FalkoJoseph/1129454 to your computer and use it in GitHub Desktop.
TinyRuby Syntax
color = "red"
shape = "triangle"
mix = color + shape
puts mix
=> redtriangle
if color == "red"
puts color
end
if shape != "circle"
puts shape
mix = "Alright!"
end
puts mix
=> Alright!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment