Skip to content

Instantly share code, notes, and snippets.

@ushitora-anqou
Created April 10, 2025 14:27
Show Gist options
  • Select an option

  • Save ushitora-anqou/c2df52289efcfa6f13a94e4bd2565a6c to your computer and use it in GitHub Desktop.

Select an option

Save ushitora-anqou/c2df52289efcfa6f13a94e4bd2565a6c to your computer and use it in GitHub Desktop.
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