]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/RecursiveValues3.scl
Fixed all line endings of the repository
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / RecursiveValues3.scl
index 020a967d5a82d7a84c4d0d55ca424f4a26dfc901..459829807e987197b1056990811cb3dd8c7bcd66 100644 (file)
@@ -1,12 +1,12 @@
-data Nat = O | S Nat\r
-\r
-// It is important for this test that even and or are not annotated\r
-even O = True\r
-even (S x) = odd x\r
-\r
-odd O = False\r
-odd (S x) = even x\r
-\r
-main = even (S (S (S (S (S O)))))\r
---\r
+data Nat = O | S Nat
+
+// It is important for this test that even and or are not annotated
+even O = True
+even (S x) = odd x
+
+odd O = False
+odd (S x) = even x
+
+main = even (S (S (S (S (S O)))))
+--
 false
\ No newline at end of file