Skip to content

Instantly share code, notes, and snippets.

@jacqui
Created July 8, 2010 20:03
Show Gist options
  • Select an option

  • Save jacqui/468522 to your computer and use it in GitHub Desktop.

Select an option

Save jacqui/468522 to your computer and use it in GitHub Desktop.
x = 0
while x <= 10
y = 0
while y <= 10
puts "#{x},#{y}"
y += 1
end
x += 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment