]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/FunctorM1.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 / FunctorM1.scl
index 5e1874e31e87e9ffe8ed6b076ac372a2f1c949d4..b3f825b94a1dd1cab2f28566f4eb1b96d0ef181b 100644 (file)
@@ -1,11 +1,11 @@
-import "Prelude"\r
-\r
-main = sequence [[1,2], [3,4], [5,6]]\r
-/*\r
-  x <- [1,2]\r
-  y <- [3,4]\r
-  z <- [5,6]\r
-  return [x,y,z]\r
-*/  \r
---\r
+import "Prelude"
+
+main = sequence [[1,2], [3,4], [5,6]]
+/*
+  x <- [1,2]
+  y <- [3,4]
+  z <- [5,6]
+  return [x,y,z]
+*/  
+--
 [[1, 3, 5], [1, 3, 6], [1, 4, 5], [1, 4, 6], [2, 3, 5], [2, 3, 6], [2, 4, 5], [2, 4, 6]]
\ No newline at end of file