Skip to content

Instantly share code, notes, and snippets.

@jakewilson
jakewilson / json.hs
Created January 27, 2022 17:22
json parser
import Control.Applicative((<|>))
import Data.Char
( isAscii
, isDigit
)
import Data.Map
import Text.ParserCombinators.ReadP
data JsonValue =