summaryrefslogtreecommitdiff
path: root/goto
diff options
context:
space:
mode:
Diffstat (limited to 'goto')
-rwxr-xr-xgoto10
1 files changed, 0 insertions, 10 deletions
diff --git a/goto b/goto
deleted file mode 100755
index 7024b7f329..0000000000
--- a/goto
+++ /dev/null
@@ -1,10 +0,0 @@
-#!./perl -Dpxstl
-#!./perl -w
-
-foo: while (1) {
- bar: {
- goto bar;
- bar: ;
- }
- print "here\n";
-}