shakemyleg 2.1.1

A simple state machine definition language and interpreter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]

mod compiler;
mod error;
mod value;
mod identifier;
mod operation;
mod expression;
mod state;
mod state_machine;

pub use crate::error::{SML_Error, SML_Result};
pub use crate::state_machine::StateMachine;
pub use crate::compiler::compile;