aboutsummaryrefslogtreecommitdiff
path: root/examples/ok-loop-huge.ph
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-13 19:38:52 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-13 19:38:52 +0200
commit8848ad8a546627e1e935c46950c7a9df759b320e (patch)
tree37edc965e348f2fd5433533ad963f7bd41be8a05 /examples/ok-loop-huge.ph
parent1283d90da7c16bf0e44118e0e9130f2274e2a0f8 (diff)
downloadposthaste-8848ad8a546627e1e935c46950c7a9df759b320e.tar.gz
posthaste-8848ad8a546627e1e935c46950c7a9df759b320e.zip
increase priority for loops
Diffstat (limited to 'examples/ok-loop-huge.ph')
-rw-r--r--examples/ok-loop-huge.ph9
1 files changed, 0 insertions, 9 deletions
diff --git a/examples/ok-loop-huge.ph b/examples/ok-loop-huge.ph
deleted file mode 100644
index 2381537..0000000
--- a/examples/ok-loop-huge.ph
+++ /dev/null
@@ -1,9 +0,0 @@
-var sum = 0
-var idx = 0
-
-do
- sum = sum + idx,
- idx = idx + 1
-until idx = 1000000001,
-
-print sum