]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/TransformationOrder.scl
Automatic execution of SCL tests in Maven
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / TransformationOrder.scl
diff --git a/tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/TransformationOrder.scl b/tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/TransformationOrder.scl
new file mode 100644 (file)
index 0000000..36c08c7
--- /dev/null
@@ -0,0 +1,17 @@
+import "StandardLibrary"
+
+rule A where
+    @to
+    Execute (print "A")
+
+rule B where
+    @to
+    Execute (print "B")
+    
+rule C where
+    @to
+    Execute (print "C")
+    
+main = transformation OneShotForward where
+--
+()