]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Transformation2.scl
Merged changes from feature/scl to master.
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / Transformation2.scl
index dbb1609a9c79e1f6c16e256085dafd1a7e0e2597..45ad0658afc17f8bced0682d0e1fb25262b77e0f 100644 (file)
@@ -10,14 +10,14 @@ rule FibRecurrence where
     
     @where
     Fib (?n+2) (?a + 1)
-/*
+
 rule PrintIt where
     @when
     Fib ?n ?a
     
     @to
     Execute (print "\(?n) -> \(?a)")
-*/
+
 main = transformation OneShotForward where
     Fib 0 1
     Fib 1 1