summaryrefslogtreecommitdiff
path: root/sample/getoptlong/abbrev.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/getoptlong/abbrev.rb')
-rw-r--r--sample/getoptlong/abbrev.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/sample/getoptlong/abbrev.rb b/sample/getoptlong/abbrev.rb
deleted file mode 100644
index 9b89863626..0000000000
--- a/sample/getoptlong/abbrev.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-require 'getoptlong'
-
-options = GetoptLong.new(
- ['--xxx', GetoptLong::NO_ARGUMENT],
- ['--xyz', GetoptLong::NO_ARGUMENT]
-)
-options.each do |option, argument|
- p [option, argument]
-end