Created
November 8, 2021 12:26
-
-
Save rummelonp/bdf971baac7571add8ab41e84c2152a9 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
require 'optparse' | |
require 'ostruct' | |
params = OpenStruct.new(count: 1) | |
opt = OptionParser.new | |
opt.on('-n INT') { |v| params.count = v.to_i } | |
opt.parse!(ARGV) | |
params.count.times do | |
ka = %w(カ ク ケ コ).shuffle | |
ra = %w(リ ロ).shuffle | |
puts "#{ka.shift}二#{ka.shift}#{ra.shift}ーム#{ka.shift}#{ra.shift}ッ#{ka.shift}" | |
end |
Author
rummelonp
commented
Jun 14, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment