Newer
Older
Ruby / aidea.rb
@NAMBA Kodai NAMBA Kodai on 4 Oct 2021 192 bytes 2021-10-04 19:30:34
#!/usr/bin/env ruby
#-*-coding: utf-8 -*-

def janken()
  te = ["✊グー","✌チョキ","✋パー"]
  te[rand(te.length)]
end

puts"ジャーンケーン"
sleep(1)
printf("%s!\n",janken)