Skip to content

Latest commit

 

History

History
 
 

automata_tools

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Module :: automata_tools

experimental rust-status docs.rs Open in Gitpod discord

Automata tools.

Sample :: trivial

use automata_tools::prelude::*;
use wtools::prelude::*;
let node : automata_tools::canonical::Node = make!( 13 );
assert_eq!( node.id(), 13.into() );
println!( "{:?}", node );
/* print : node::13 */

To add to your project

cargo add automata_tools

Try out from the repository

git clone https://github.com/Wandalen/wTools
cd wTools
cd sample/rust/automata_tools_trivial_sample
cargo run