]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/performance/SumOfInverses.scl
Merged changes from feature/scl to master.
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / performance / SumOfInverses.scl
diff --git a/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/performance/SumOfInverses.scl b/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/performance/SumOfInverses.scl
deleted file mode 100644 (file)
index a3f9407..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-import "Prelude"\r
-\r
-main :: Double -> Double\r
-main m = loop 1 0\r
-  where\r
-    loop x cur = if x > m\r
-                 then cur\r
-                 else loop (x+1) (cur + 1 / x)
\ No newline at end of file