]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/MonadSyntax4.scl
Merge "(refs #7508) Added missing effects in the simplification of EBind"
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / MonadSyntax4.scl
1 import "Prelude"
2
3 main = ignore edo 
4   x <- [print "Hello"]
5   return (print "world!")
6 --
7 Hello
8 world!
9 ()