]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Transformation7.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / Transformation7.scl
1 import "StandardLibrary"
2
3 Foo ?x :- 
4     @enforce
5     Execute (iterList printString [?x :: String])
6
7     
8 rule DoIt where
9     @to
10     Foo "Hello world!"
11
12 main = transformation OneShotForward where
13 --
14 Hello world!
15 ()