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
8
9
//! This module contains the parsers for the types in text as well as binary
//! format.

pub mod binary;
pub mod code;
pub mod error;
pub mod text;

pub use error::{TypeCodeError, TypeParseError};