Originally created by @bioball on GitHub (Nov 21, 2024).
Originally assigned to: @stackoverflow on GitHub.
For example, this code results in 500 delegates:
function foo(elem: Listing<Int>(length == 1)) =
if (elem[0] == 500) elem[0]
else foo(new { elem[0] + 1 })
res = foo(new Listing { 0 })
Originally created by @bioball on GitHub (Nov 21, 2024).
Originally assigned to: @stackoverflow on GitHub.
For example, this code results in 500 delegates:
```pkl
function foo(elem: Listing<Int>(length == 1)) =
if (elem[0] == 500) elem[0]
else foo(new { elem[0] + 1 })
res = foo(new Listing { 0 })
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @bioball on GitHub (Nov 21, 2024).
Originally assigned to: @stackoverflow on GitHub.
For example, this code results in 500 delegates: