Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{def loops_while
{lambda {:i}
{if {< :i 1}
then (end of loop)
else :i {loops_while {/ :i 2}}}}}
-> loops_while
{loops_while 1024}
-> 1024 512 256 128 64 32 16 8 4 2 1 (end of loop)

View file

@ -0,0 +1,19 @@
{def while
{lambda {:i}
{if {< :i 1}
then
else {br}:i {while {/ :i 2}}}}}
{while 1024} ->
1024
512
256
128
64
32
16
8
4
2
1