]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/MonadSyntax4.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 / MonadSyntax4.scl
1 module {
2     features = [edo]
3 }
4 import "Prelude"
5
6 main = ignore edo 
7   x <- [print "Hello"]
8   return (print "world!")
9 --
10 Hello
11 world!
12 ()