2024-04-15 19:26:25 -04:00
|
|
|
?(?-) (This example tests various aspects of the implementation.)
|
|
|
|
|
2024-04-15 20:18:18 -04:00
|
|
|
<> (?: print) (?:)
|
|
|
|
<> (?x = ?x test) (#ok)
|
|
|
|
<> (?x = ?y test) (#fail)
|
|
|
|
|
|
|
|
?(?-) (Basic register setups)
|
|
|
|
|
|
|
|
<> (dup (?x)) ((?x ?x) =)
|
|
|
|
<> (swap (?x ?y)) ((?y ?x) =)
|
|
|
|
<> (compare (?x ?x ?x)) ((#t) =)
|
|
|
|
|
|
|
|
dup (abc) (abc abc) test
|
|
|
|
swap (abc def) (def abc) test
|
|
|
|
compare (abc abc abc) (#t) test
|
|
|
|
|
|
|
|
?(?-) (Lambdas)
|
|
|
|
|
|
|
|
?((?x) ((?x ?x) =)) abc (abc abc) test
|
2024-04-04 20:15:16 -04:00
|
|
|
|