]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/BooleanId.scl
Remove unused import in DeleteHandler
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / BooleanId.scl
1 @private\r
2 @inline\r
3 not True = False\r
4 not False = True\r
5 \r
6 @private\r
7 @inline\r
8 id x = not (not x)\r
9 \r
10 main = id True\r
11 --\r
12 true