unison/unison-src/transcripts/fix2026.md

44 lines
974 B
Markdown
Raw Permalink Normal View History

2021-05-27 20:39:09 +03:00
```ucm:hide
scratch/main> builtins.mergeio
2021-05-27 20:39:09 +03:00
```
```unison
2021-08-24 21:33:27 +03:00
structural ability Exception where raise : Failure -> x
2021-05-27 20:39:09 +03:00
ex = unsafeRun! '(printLine "hello world")
printLine : Text ->{IO, Exception} ()
printLine t =
putText stdOut t
putText stdOut "\n"
stdOut : Handle
stdOut = stdHandle StdOut
compose2 : (c ->{𝕖1} d) -> (a ->{𝕖2} b ->{𝕖3} c) -> a -> b ->{𝕖1,𝕖2,𝕖3} d
2021-05-27 20:39:09 +03:00
compose2 f g x y = f (g x y)
putBytes : Handle -> Bytes ->{IO, Exception} ()
putBytes = compose2 toException putBytes.impl
toException : Either Failure a ->{Exception} a
toException = cases
Left e -> raise e
Right a -> a
putText : Handle -> Text ->{IO, Exception} ()
putText h t = putBytes h (toUtf8 t)
Exception.unsafeRun! : '{Exception, g} a -> '{g} a
Exception.unsafeRun! e _ =
h : Request {Exception} a -> a
h = cases
{Exception.raise fail -> _ } ->
bug fail
{a} -> a
handle !e with h
```
```ucm
scratch/main> run ex
2021-05-27 20:39:09 +03:00
```