check in refreshed transcript output

This commit is contained in:
Paul Chiusano 2021-06-08 07:44:12 -05:00
parent c0424b6608
commit bb3f5b26b6

View File

@ -52,28 +52,34 @@ myServer = unsafeRun! '(hello "127.0.0.1" "0")
do an `add` or `update`, here's how your codebase would
change:
⊡ Previously added definitions will be ignored: Exception
Exception.raise
⍟ These new definitions are ok to `add`:
type Either a b
(also named builtin.Either)
ability Exception
Exception.unsafeRun! : '{g, Exception} a -> '{g} a
bugFail : Failure -> r
closeSocket : Socket ->{IO, Exception} ()
hello : Text -> Text ->{IO, Exception} ()
myServer : '{IO} ()
putBytes : Handle
-> Bytes
->{IO, Exception} ()
putText : Handle -> Text ->{IO, Exception} ()
reraise : Either Failure b ->{Exception} b
serverSocket : Optional Text
-> Text
->{IO, Exception} Socket
(also named Exception.reraise)
socketSend : Socket
-> Bytes
->{IO, Exception} ()
toException : Either Failure a ->{Exception} a
(also named Exception.reraise)
⍟ These names already exist. You can `update` them to your
new definition:
closeSocket : Socket ->{IO, Exception} ()
putBytes : Handle -> Bytes ->{IO, Exception} ()
serverSocket : Optional Text
-> Text
->{IO, Exception} Socket
```
```ucm