An open API service indexing awesome lists of open source software.

https://github.com/rbcavi/parserlang

A programming language, intended for writing recursive descent parsers
https://github.com/rbcavi/parserlang

compiled-language parser vm

Last synced: about 2 months ago
JSON representation

A programming language, intended for writing recursive descent parsers

Awesome Lists containing this project

README

          

# Parserlang

Name might change.

A programming language with backtracking.

Compiled to a VM.

All data types are immutable.

Functions are first-class values.

Data types:
* null
* boolean
* integer
* float
* string
* array
* object
* closure
* generator
* any user defined types

pv is copied from [jq](https://github.com/jqlang/jq)