]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/ListSyntax2.scl
Automatic execution of SCL tests in Maven
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / ListSyntax2.scl
1 import "Prelude"\r
2 \r
3 a = [1,2]\r
4 b = [5,9]\r
5 main = [(x, y) | x <- a, x==2, y <- b]\r
6 --\r
7 [(2,5), (2,9)]