module RomanNumericals

Constants

VERSION

Public Instance Methods

main() click to toggle source

Your code goes here…

# File lib/roman_numericals.rb, line 43
def main
  if ARGV.size > 0
    puts ARGV[0].to_i.to_roman
  else
    puts "引数が1つ以上必要です"
  end
end