Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Created November 22, 2009 00:51
Show Gist options
  • Select an option

  • Save ELLIOTTCABLE/240351 to your computer and use it in GitHub Desktop.

Select an option

Save ELLIOTTCABLE/240351 to your computer and use it in GitHub Desktop.
begin
# alternative:
# puts "woo!" incase i > 2
incase i >= 2
puts "woo!"
end
i = 0
i = 2
# "woo!" is printed!
i += 1
i = 1
i += 1
# "woo!" is printed!
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment