]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/LocalDefinitions5.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 / LocalDefinitions5.scl
1 import "Prelude"
2
3 data Foo = Foo Double Double
4
5 a = Foo 1 2
6
7 b = y
8   where
9     Foo x y = a
10     
11 main = show b
12 --
13 2.0