]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/ListSyntax.scl
Remove unused import in DeleteHandler
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / ListSyntax.scl
1 import "Prelude"\r
2 \r
3 a = [1,2]\r
4 b = [5,9]\r
5 main = [(x,y) | x <- a, y <- b]\r
6 --\r
7 [(1,5), (1,9), (2,5), (2,9)]