diff options
author | Hiroshi SHIBATA <[email protected]> | 2024-01-16 16:30:32 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-01-16 17:07:10 +0900 |
commit | 4b6936aa047158c98a9ac8861d51e5e09229f8c0 (patch) | |
tree | 9dca3595126af7fd634d7d9bf15c7d4811196082 /sample/getoptlong/aliases.rb | |
parent | 3f5016178cb81536e800a9121b3804e36c9af93c (diff) |
Unbundled samples for getoptlong
Diffstat (limited to 'sample/getoptlong/aliases.rb')
-rw-r--r-- | sample/getoptlong/aliases.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sample/getoptlong/aliases.rb b/sample/getoptlong/aliases.rb deleted file mode 100644 index 895254c6ae..0000000000 --- a/sample/getoptlong/aliases.rb +++ /dev/null @@ -1,8 +0,0 @@ -require 'getoptlong' - -options = GetoptLong.new( - ['--xxx', '-x', '--aaa', '-a', '-p', GetoptLong::NO_ARGUMENT] -) -options.each do |option, argument| - p [option, argument] -end |