summaryrefslogtreecommitdiff
path: root/sample/opt_s.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/opt_s.rb')
-rw-r--r--sample/opt_s.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/sample/opt_s.rb b/sample/opt_s.rb
deleted file mode 100644
index 56ff0eea15..0000000000
--- a/sample/opt_s.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-#! ./ruby -s
-# test for option `-s'
-
-if ($xyz)
- print("xyz = TRUE\n")
-end
-if ($zzz)
- print("zzz = ", $zzz, "\n")
-end
-if ($ARGV.length > 0)
- print($ARGV.join(", "), "\n")
-end