-
-
Save arne-s/5021879 to your computer and use it in GitHub Desktop.
CoffeeScript: For loop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Nested loops | |
for x in (1..10) do | |
for y in (1..10) do | |
puts x * y | |
end | |
end | |
# Nested loops with mixed data | |
for x in (1..10) do | |
for letter in "A".."Z" do | |
puts "#{x}-#{letter}" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment