The pipeline is finally reasonably clean

This commit is contained in:
2023-09-12 01:26:46 +01:00
parent 6693d93944
commit 8c866967a9
86 changed files with 1959 additions and 1393 deletions

View File

@@ -1,6 +1,8 @@
export operators[ != == ]
export const not := \bool. if bool then false else true
export macro ...$a != ...$b =0x3p36=> (not (...$a == ...$b))
export macro ...$a == ...$b =0x3p36=> (equals (...$a) (...$b))
macro ...$a != ...$b =0x3p36=> (not (...$a == ...$b))
macro ...$a == ...$b =0x3p36=> (equals (...$a) (...$b))
export macro if ...$cond then ...$true else ...$false:1 =0x1p84=> (
ifthenelse (...$cond) (...$true) (...$false)
)