Skip to content

Instantly share code, notes, and snippets.

View frndmg's full-sized avatar

Fernando Martínez González frndmg

View GitHub Profile
@frndmg
frndmg / Main.hs
Last active August 29, 2022 13:31
JSON Parser
-- Inspired on the video from [Tscoding](https://youtu.be/N9RUqGYuGfw)
import Control.Applicative (Alternative, empty, many, (<|>))
import Data.Char (isDigit, isSpace)
data JsonValue
= JsonNull
| JsonBool Bool
| JsonInteger Int
| JsonFloat Float