Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 709 Bytes

README.md

File metadata and controls

24 lines (14 loc) · 709 Bytes

fred-haskell

Implementation of Fred (Flexible REpresentation of Data) for haskell

What is Fred ?

Fred (Flexible REpresentation of Data) is a data-interchange format. It was created with the goal to be easy for humans to read and write but also easy to create parsers.

It has more data types than JSON and some features like support for metadata and tags.

Fred Specification and Grammar

The Fred Spec and Grammar is being developed here Fred Grammar and Specification

How was implemented?

fred-haskell utilizes Parsec as the parser library and follows the spec.

Documentation and Haddock