Skip to content

Instantly share code, notes, and snippets.

View diorcula's full-sized avatar
🦇
(っ◔◡◔)っ 🦇⚰️If you need me, I'll be in my coffin. 🐈‍⬛🕸️🦇 ♥

FKA Soffers BSc diorcula

🦇
(っ◔◡◔)っ 🦇⚰️If you need me, I'll be in my coffin. 🐈‍⬛🕸️🦇 ♥
View GitHub Profile
@kazu-yamamoto
kazu-yamamoto / gist:8120392
Created December 25, 2013 05:21
Simple JSON parser in Haskell
-- | This JSON package retains the order of array elements.
-- JSON: http://www.ietf.org/rfc/rfc4627.txt
module JSON (
JSON(..)
, parseJSON
) where
import Control.Applicative ((<*),(*>),(<$>),(<$))
import Control.Monad (void)