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