]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/Proc3.scl
Merged changes from feature/scl to master.
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / Proc3.scl
diff --git a/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/Proc3.scl b/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/Proc3.scl
deleted file mode 100644 (file)
index 4a17fe4..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-import "Prelude"\r
-\r
-@private\r
-repeat :: Integer -> (() -> <e> a) -> <e> ()\r
-repeat n proc = \r
-    if n > 0 then do\r
-        proc ()\r
-        repeat (n-1) proc\r
-    else () \r
-\r
-main = do\r
-    a = ref 1 \r
-    repeat 3 (\() -> a := 2)\r
-    getRef a\r
---\r
-2
\ No newline at end of file