diff options
Diffstat (limited to 'repcore/src/lib.rs')
-rw-r--r-- | repcore/src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/repcore/src/lib.rs b/repcore/src/lib.rs index 7d12d9a..589b61c 100644 --- a/repcore/src/lib.rs +++ b/repcore/src/lib.rs @@ -1,3 +1,9 @@ +//! This package implements the core algorithm of the entire +//! workspace: parsing with derivatives by means of regular nulling +//! languages. + +pub mod grammar; + pub fn add(left: usize, right: usize) -> usize { left + right } |