summaryrefslogtreecommitdiff
path: root/sample/caller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/caller.rb')
-rw-r--r--sample/caller.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/sample/caller.rb b/sample/caller.rb
deleted file mode 100644
index 8988733377..0000000000
--- a/sample/caller.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-def test
- for i in 1..2
- for j in 1..5
- print(j, ": ", caller(j).join(':'), "\n")
- end
- end
-end
-
-def test2
- print(1, ": ", caller(1).join(':'), "\n")
- test()
-end
-
-test2()
-caller()