]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/EmptyLet.scl
Re-enabled Acorn transaction cancellation support for testing
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / EmptyLet.scl
1 import "Prelude"\r
2 \r
3 ex1 = let in 1\r
4 ex2 = let {} in 2\r
5 ex3 = let {a=3} in a \r
6 \r
7 main = ex1 + ex2 + ex3\r
8 --\r
9 6