]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/MonadSyntax4.scl
c410c98c9f651a557bbc7ee876f0f8104a3f00d7
[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 ()