File size: 359 Bytes
d5bfab8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! This crate is a Rust port of the [LODA language].
//! 
//! The original C++ implemenation can be found [here].
//! 
//! [LODA language]: https://loda-lang.org/spec/
//! [here]: https://github.com/loda-lang/loda-cpp

#[macro_use]
extern crate log;

pub mod control;
pub mod execute;
pub mod oeis;
pub mod parser;
pub mod unofficial_function;
pub mod util;