-
-
Save epitron/77c401cbdf6fe50f6031 to your computer and use it in GitHub Desktop.
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
width = 50; (1..width).each { |n| a = [" "] * width; dist = width/n.to_f; (1...n).each { |i| a[i*dist] = "/" }; puts "#{n.to_s.rjust(3)} #{a.join('')}" } |
Author
epitron
commented
Jun 23, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment