mech_interpreter/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
#![allow(warnings)]
#![feature(step_trait)]

extern crate nalgebra as na;
#[macro_use]
extern crate mech_core;

pub mod interpreter;
pub mod stdlib;

pub use crate::interpreter::*;