]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/ListSyntax2.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / ListSyntax2.scl
index e020731a72c605736736a444d4bd0d7501cb14e8..d33e78fac2d0ce34aaa44fb6af0a9a21f1c2f2da 100644 (file)
@@ -1,7 +1,7 @@
-import "Prelude"\r
-\r
-a = [1,2]\r
-b = [5,9]\r
-main = [(x, y) | x <- a, x==2, y <- b]\r
---\r
+import "Prelude"
+
+a = [1,2]
+b = [5,9]
+main = [(x, y) | x <- a, x==2, y <- b]
+--
 [(2,5), (2,9)]
\ No newline at end of file