Skip to content

Instantly share code, notes, and snippets.

@Haar
Last active August 29, 2015 14:05
Show Gist options
  • Save Haar/5c81a69102e37238854b to your computer and use it in GitHub Desktop.
Save Haar/5c81a69102e37238854b to your computer and use it in GitHub Desktop.
10.times do
print "Hello world"
end
(1..10).each do |integer|
print "Hello #{integer}"
end
(1..10).each do |integer|
if integer.odd?
print "Hello #{integer}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment