
26 Feb
2023
26 Feb
'23
4:26 a.m.
I am try to reproduce the first example here: https://hackage.haskell.org/package/jose-0.10/docs/Crypto-JWT.html I can't seem to succeed with importing the function `runJOSE` ghci> import Crypto.JWT ghci> :t runJOSE <interactive>:1:1: error: Variable not in scope: runJOSE ghci> import Crypto.JOSE.Error --https://github.com/frasertweedale/hs-jose/blob/master/src/Crypto/JOSE/Error.... ghci> :t runJOSE <interactive>:1:1: error: Variable not in scope: runJOSE Can you point out what I am missing? Thanks.