Skip to content

Instantly share code, notes, and snippets.

@mehagel
Created May 6, 2013 21:23
Show Gist options
  • Save mehagel/5528320 to your computer and use it in GitHub Desktop.
Save mehagel/5528320 to your computer and use it in GitHub Desktop.
ef print_triangle(rows)
if 1.upto (rows) do |i|
puts "*" * i
end
else
return nil
end
end
print_triangle(22)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment