kamo 0.9.4

A library to assist in the creation of an interpreter or compiler and its associated runtime.
Documentation
1
2
3
4
5
6
7
//! # Predefined parsers for common data formats
//! 
//! This module contains predefined parsers for common data formats. Currently
//! it contains only a parser for S-expressions, but more parsers will be added
//! in the future.
pub mod sexpr;
pub use sexpr::Sexpr;