]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/BooleanId.scl
Merge commit '31664b6'
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / 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