Branch
Hash :
dcb2126f
Author :
Thomas de Grivel
Date :
2025-03-11T11:38:14
wip tests
%KC3.Op{callable: fn (a, b) { a + b }}
%KC3.Op{sym: :+,
arity: 2,
special: false,
precedence: 0,
associativity: 1,
callable: fn (a, b) { a + b }}
defoperator %KC3.Op{sym: :****,
precedence: 13,
callable: cfn Tag "tag_mul" (Tag, Tag, Result)}
%KC3.Op{sym: :****,
arity: 2,
special: false,
precedence: 13,
associativity: 1,
callable: cfn Tag "tag_mul" (Tag, Tag, Result)}
4 **** 4
16
4 **** 4 **** 4
64
4 **** 4 + 4
20
to_lisp(quote 4 **** 4 + 4)
[+, [****, 4, 4], 4]