]> gerrit.simantics Code Review - simantics/platform.git/blob - TransformationOrder.scl
a8a657d2ad7b988be6a619e6b186be8df5001564
[simantics/platform.git] / TransformationOrder.scl
1 import "StandardLibrary"
2
3 rule A where
4     @to
5     Execute (print "A")
6
7 rule B where
8     @to
9     Execute (print "B")
10     
11 rule C where
12     @to
13     Execute (print "C")
14     
15 main = transformation OneShotForward where
16 --
17 A
18 B
19 C
20 ()