]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/EmptyLet.scl
(refs #7307) Added features field to SCL module header
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / EmptyLet.scl
1 import "Prelude"
2
3 ex1 = let in 1
4 ex2 = let {} in 2
5 ex3 = let {a=3} in a 
6
7 main = ex1 + ex2 + ex3
8 --
9 6