Skip to content

Instantly share code, notes, and snippets.

@pahnin
Created September 17, 2013 18:59
Show Gist options
  • Save pahnin/6599077 to your computer and use it in GitHub Desktop.
Save pahnin/6599077 to your computer and use it in GitHub Desktop.
output 1 2 3 4 5 6 6 7 8 9
c=0
(1..4).each do |n|
d=c
c=n-1
e=n+d
n.times do
print e
e=e+1
end
print "\n"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment