Skip to content

Instantly share code, notes, and snippets.

@jeffawang
jeffawang / json.hs
Created January 27, 2022 18:29 — forked from jakewilson/json.hs
json parser
import System.Environment
import Control.Applicative((<|>))
import Data.Char
( isAscii
, isDigit
)
import Data.Map
import Text.ParserCombinators.ReadP