Last active
December 20, 2015 07:49
-
-
Save MrBean83/6096158 to your computer and use it in GitHub Desktop.
"Print pretty right triangle"
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
| def print_triangle(rows) | |
| 1.upto(rows) { |i| puts "*" * i } | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment