Skip to content

Instantly share code, notes, and snippets.

@rummelonp
Last active August 29, 2015 14:28
Show Gist options
  • Save rummelonp/93e24da14aa8aea81a55 to your computer and use it in GitHub Desktop.
Save rummelonp/93e24da14aa8aea81a55 to your computer and use it in GitHub Desktop.
@v=('分かる','それな');
print@v[rand @v],"\n"while<STDIN>;
import sys, random
while sys.stdin.readline().strip() != '':
print(random.choice([u'分かる',u'それな']))
puts %w(分かる それな).sample while gets.chomp!=''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment