Created
April 10, 2025 14:27
-
-
Save ushitora-anqou/c2df52289efcfa6f13a94e4bd2565a6c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local loop(i) = | |
| if i >= 100000 then 0 | |
| else if false then 1 | |
| else loop(i + 1) tailstrict; | |
| loop(0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment