Code Review
/
simantics
/
platform.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
review
|
tree
history
|
raw
|
HEAD
(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
()