]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/ListSyntax6.scl
Automatic execution of SCL tests in Maven
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / ListSyntax6.scl
1 import "Prelude"\r
2 \r
3 main :: [Integer]\r
4 main = [x | x <- [1..10], then take 3]\r
5 --\r
6 [1, 2, 3]