Skip to content

Instantly share code, notes, and snippets.

@aquarla
Created June 20, 2022 00:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aquarla/c7cb86f5d5bb900966f5a65596b6e853 to your computer and use it in GitHub Desktop.
Save aquarla/c7cb86f5d5bb900966f5a65596b6e853 to your computer and use it in GitHub Desktop.
# coding: utf-8
def  (  )
(1..  ).each do |   |
if     % 15 == 0
print '     '
elsif     % 3 == 0
print '   '
elsif     % 5 == 0
print '  '
else
print    
end
print "\n"
end
end
 (100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment