Skip to content

Instantly share code, notes, and snippets.

@masawada
Created August 10, 2013 13:53
Show Gist options
  • Save masawada/6200532 to your computer and use it in GitHub Desktop.
Save masawada/6200532 to your computer and use it in GitHub Desktop.
# coding: utf-8
i = 1
ARGV[0].to_i.times do
print "職" if i%3==0
print "仕事" if i%5==0
print i if i%3!=0 && i%5!=0
puts ""
i+=1
sleep 0.05
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment