Adam Wespiser
Adam Wespiser
@srid There are two good lists of foundational papers for implementing a Haskell compiler: https://www.stephendiehl.com/posts/essential_compilers.html https://gitlab.haskell.org/ghc/ghc/-/wikis/reading-list
https://github.com/protolude/protolude/pull/131 Supports 9.0.1
The purpose of that executable is to create an export list over all of protolude. However, it's using the ghc api and no longer stable, so my intension is to...
https://hackage.haskell.org/package/protolude-0.3.2
`ConvertText Text ByteString` would use [encodeUtf8](https://hackage.haskell.org/package/text-2.0/docs/Data-Text-Encoding.html#v:encodeUtf8) which is non-partial. Similarly, the following instances could be added as well: ``` ConvertText Text ByteString ConvertText String ByteString ConvertText Lazy.Text ByteString ConvertText Text...
I didn't do the `3.0` release, but checking out several commits and looking at version bounds as well as the change log, it appears that `22e2cec` is what we want...
@operatorequals just so I understand, The syntax: ``` json | ``` Would be able to import json secrets without a prefix? I believe that's what would happen form checking the...
Yes, it's a bit unfortunate, I need to return to this problem when I get some time. My thinking on the issue is that using `ReaderT` evaluator makes the tutorial...
@robx I'm on it. I approved the runs. Once they pass I'll merge and cut a release. Thank you for your patience w/ this.
I merged this commit in the following PR: https://github.com/protolude/protolude/pull/142 (one of the actions needed to be updated)