modal/concat.modal

8 lines
152 B
Plaintext
Raw Normal View History

2024-03-31 22:27:55 +01:00
define (: ?x ?y ;) (define ?x ?y)
: (?x dup) (?x ?x) ;
: (?x ?y swap) (?y ?x) ;
: (?x drop) () ;
: (?x ?y p*) (?x * ?y) ;
: square (dup p*) ;
10 square