]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Guards1.scl
Fixed all line endings of the repository
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / Guards1.scl
index db3b438330d5dd1c145c26bc878ca9e940f26235..28f2e7ed2dbab9e28e446cf08794dcd2f19c9be9 100644 (file)
@@ -1,9 +1,9 @@
-import "Prelude"\r
-\r
-fib :: Integer -> Integer\r
-fib x | x <= 2 = 1\r
-      | True   = fib (x-1) + fib (x-2)\r
-\r
-main = fib 13\r
---\r
+import "Prelude"
+
+fib :: Integer -> Integer
+fib x | x <= 2 = 1
+      | True   = fib (x-1) + fib (x-2)
+
+main = fib 13
+--
 233
\ No newline at end of file