]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/List.scl
Ensure GetElementClassRequest is not constructed without elementFactory
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / List.scl
1 \r
2 data List a = Nil | Cons a (List a)\r
3 \r
4 main :: List Integer\r
5 main = Cons (3 :: Integer) Nil\r
6 --\r
7 (Cons 3 Nil)