summaryrefslogtreecommitdiff
path: root/sample/t1.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/t1.rb')
-rw-r--r--sample/t1.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/sample/t1.rb b/sample/t1.rb
deleted file mode 100644
index 701a1cd389..0000000000
--- a/sample/t1.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-def test(a1, *a2)
- while 1
- case gets()
- when nil
- break
- when /^-$/
- print("-\n")
- return
- when /^-help/
- print("-help\n")
- break
- end
- end
- print(a1, a2, "\n")
-end
-
-print($ARGV, "\n")
-print("in: ")
-test(1)
-print("end\n")