unison/unison-src/tests/io-state3.u
2021-08-24 11:33:27 -07:00

11 lines
279 B
Plaintext

--IO3 ability
structural ability IO where
launchMissiles : () -> {IO} ()
-- binding IS guarded, so its body can access whatever abilities
-- are declared by the type of the binding
-- ambient abilities (which will be empty)
ex1 : () -> {IO} ()
ex1 unit = IO.launchMissiles()