No description
Find a file
2021-07-18 18:37:27 +01:00
src global edn_true/edn_false are nil on nim 1.4.0 2021-05-08 11:03:00 +01:00
tests add test for :_/foo keywords in namespaced maps 2021-05-08 11:05:23 +01:00
.build.yml add nim package to build file 2020-12-23 14:38:46 +00:00
.gitignore ignore src/nim executable 2021-07-18 18:37:27 +01:00
edn.nimble Update version 2021-05-09 11:25:31 +01:00
README.md added README 2019-08-23 19:02:47 +01:00

EDN

A Clojure and EDN parser library written in Nim.

This library should be considered alpha quality at this point.

  • API will change
  • Some design dead-ends still in the code
  • I'm learning Nim at the same time as I'm writing this

Motivation

  • To be able to parse EDN files and also Clojure/ClojureScript code.
  • If you decide to read the source you may wonder what's the weird comment handling code is for? The answer: I'd like to be able to put meaningful stuff in the comments to enable literate programming (or at least experiment with it), which means I don't want to always discard the them.

Code Style

I'm using what Python people use: lowercase with underscores for procs and Capitalized names for types.

License

EPL 2.0