summaryrefslogtreecommitdiff
path: root/doc/tutorial/long_names.rb
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tutorial/long_names.rb')
-rw-r--r--doc/tutorial/long_names.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/tutorial/long_names.rb b/doc/tutorial/long_names.rb
deleted file mode 100644
index a34b3382c2..0000000000
--- a/doc/tutorial/long_names.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-require 'optparse'
-parser = OptionParser.new
-parser.on('--xxx') do |value|
- p ['-xxx', value]
-end
-parser.on('--y1%', '--z2#') do |value|
- p ['--y1% or --z2#', value]
-end
-parser.parse!