mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fe72cff487
* More on tutorial: clearer example output https://github.com/ruby/optparse/commit/84dfd92d2a
9 lines
181 B
Ruby
9 lines
181 B
Ruby
require 'optparse'
|
|
parser = OptionParser.new
|
|
parser.on('-x', '--xxx') do |value|
|
|
p ['--xxx', value]
|
|
end
|
|
parser.on('-y', '--y1%') do |value|
|
|
p ['--y1%', value]
|
|
end
|
|
parser.parse!
|