Updated tests to match new registers
This commit is contained in:
parent
6e0d3bb9e0
commit
44e809f092
|
@ -1,7 +1,7 @@
|
||||||
?(?-) (This example joins two tokens.)
|
?(?-) (This example joins two tokens.)
|
||||||
|
|
||||||
<> (join (?a) (?*)) (join reverse (?a) List (?*))
|
<> (join (?a) (?*)) (join reverse (?a) List (?*))
|
||||||
<> (join List () List ?*) (?*)
|
<> (join List () List ?^) (?^)
|
||||||
<> (join List (?x ?y) List ?z) (join List ?y List (?x ?z))
|
<> (join List (?x ?y) List ?z) (join List ?y List (?x ?z))
|
||||||
|
|
||||||
<> (reverse List ()) (List)
|
<> (reverse List ()) (List)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
?(?-) (This example reverses the string modal, into ladom.)
|
?(?-) (This example reverses the string modal, into ladom.)
|
||||||
|
|
||||||
<> (reverse List () ?*) (?*)
|
<> (reverse List () ?^) (?^)
|
||||||
<> (reverse (?*)) (reverse List (?*) ())
|
<> (reverse (?*)) (reverse List (?*) ())
|
||||||
<> (reverse List (?x ?y) ?z) (reverse List ?y (?x ?z))
|
<> (reverse List (?x ?y) ?z) (reverse List ?y (?x ?z))
|
||||||
|
|
||||||
|
|
|
@ -57,16 +57,18 @@ abc ?(?x) def = abc test
|
||||||
<> (explode ?*) ((?*) =)
|
<> (explode ?*) ((?*) =)
|
||||||
|
|
||||||
explode cow (c (o (w ()))) test
|
explode cow (c (o (w ()))) test
|
||||||
|
explode (12 34 45) (12 (34 (45 ()))) test
|
||||||
|
|
||||||
?(?-) (Implode)
|
?(?-) (Implode)
|
||||||
|
|
||||||
<> (implode ?*) (?* =)
|
<> (implode ?^) (?^ =)
|
||||||
|
|
||||||
implode (b (a (t ()))) bat test
|
implode (b (a (t ()))) bat test
|
||||||
|
implode (12 (34 (56 ()))) 123456 test
|
||||||
|
|
||||||
?(?-) (List reversal)
|
?(?-) (List reversal)
|
||||||
|
|
||||||
<> (reverse List () ?*) (?*)
|
<> (reverse List () ?^) (?^)
|
||||||
<> (reverse (?*)) (reverse List (?*) ())
|
<> (reverse (?*)) (reverse List (?*) ())
|
||||||
<> (reverse List (?x ?y) ?z) (reverse List ?y (?x ?z))
|
<> (reverse List (?x ?y) ?z) (reverse List ?y (?x ?z))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue