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,4 @@
{if true then YES else NO}
-> YES
{if false then YES else NO}
-> NO

View file

@ -0,0 +1,11 @@
{def TRUE {lambda {:a :b} :a}}
-> TRUE
{def FALSE {lambda {:a :b} :b}}
-> FALSE
{def IF {lambda {:c :a :b} {:c :a :b}}}
-> IF
{IF TRUE yes no}
-> yes
{IF FALSE yes no}
-> no