]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/ListSyntax.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 / ListSyntax.scl
index 1747a6f6258cfefe16e8fffc31bceb2b68488999..d14a82b13cce33943e3e0e9f731bcccae010856a 100644 (file)
@@ -1,7 +1,7 @@
-import "Prelude"\r
-\r
-a = [1,2]\r
-b = [5,9]\r
-main = [(x,y) | x <- a, y <- b]\r
---\r
+import "Prelude"
+
+a = [1,2]
+b = [5,9]
+main = [(x,y) | x <- a, y <- b]
+--
 [(1,5), (1,9), (2,5), (2,9)]
\ No newline at end of file