bin/h in h-1.1.2 vs bin/h in h-2.0.0

- old
+ new

@@ -2,10 +2,16 @@ require 'h' h = H::Generator.new -if ARGV.first.nil? - puts h.prompt +result = if ARGV.first + if ARGV[1] + h.input ARGV[0], ARGV[1].to_i + else + h.input ARGV[0] + end else - puts h.input ARGV.first + h.prompt end + +puts result