logo-interp 0.1.0

Implements parsing and interpreting of Logo programming language
Documentation
1
2
3
4
5
6
7
8
#[macro_use]
extern crate lazy_static;

pub mod core;
pub mod parser;
pub mod executor_state;
pub mod stdlib;
pub mod executor;