X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=tests%2Forg.simantics.scl.compiler.tests%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2Ftests%2Fscl%2FCollaz.scl;h=08de951646c6e46a267a58d494e64296ecc14f4b;hp=2e4552d0d6235202dfcf3d849a459984fdf6673b;hb=172abed5dbf73c1304a7a95bb8504ea293556948;hpb=2a8d452434358e28cb826744bc01755a46455afd diff --git a/tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Collaz.scl b/tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Collaz.scl index 2e4552d0d..08de95164 100644 --- a/tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Collaz.scl +++ b/tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Collaz.scl @@ -1,16 +1,16 @@ -import "Prelude" - -f x = if x `mod` 2 == 0 - then x `div` 2 - else 3*x + 1 -fd x = unfoldr (\x -> do - r = f x - if x == 1 - then Nothing - else Just (x,r) - ) x - -//main :: [Integer] -main = fd 7 --- +import "Prelude" + +f x = if x `mod` 2 == 0 + then x `div` 2 + else 3*x + 1 +fd x = unfoldr (\x -> do + r = f x + if x == 1 + then Nothing + else Just (x,r) + ) x + +//main :: [Integer] +main = fd 7 +-- [7, 22, 11, 34, 17, 52, 26, 13, 40, 20, 10, 5, 16, 8, 4, 2] \ No newline at end of file