Skip to content

v0.13.5

Compare
Choose a tag to compare
@A4-Tacks A4-Tacks released this 14 Dec 12:30
· 154 commits to main since this release
e269f02
Fixed: OpExpr中的if不会注册标记导致重复展开出现问题

Example
------------------------------
```mdtlbl
const Foo = (
    $ = if _0 ? _1 : _2;
);
take A = Foo[true 1 2] B = Foo[false 1 2];
print A B;
```