unison/unison-src/errors/io-effect.u
2019-02-21 14:49:12 -05:00

10 lines
206 B
Plaintext

--IO effect
effect IO where
launchMissiles : () -> {IO} ()
-- binding is not guarded by a lambda, it only can access
-- ambient abilities (which will be empty)
ex1 : {IO} ()
ex1 = IO.launchMissiles()
()