cythan

Crates.iocythan
lib.rscythan
version0.1.0
sourcesrc
created_at2020-08-25 17:35:30.247796
updated_at2020-08-25 17:35:30.247796
descriptionThe Cythan machine implementation in Rust
homepage
repositoryhttps://github.com/Cypooos/Cythan-v3
max_upload_size
id280633
size17,931
(ccgauche)

documentation

README

Cythan v3

Cythan is an abstract machine that has been created to be simpler than Turing's one. This is the Rust implementation of Cythan.

Why Rust ?

  • Blazingly fast performances
  • Low memory foot-print
  • Great ecosystem
  • Concurrency
  • Memory safety
  • WASM compilable

How to use Cythan in a project

Cargo.toml

[dependencies]
cythan = "*"

Example

let mut cythan = Cythan::new(vec![12,78,15,21,20]);
for _ in 0..20 {
    cythan.next();
}
println!("{}",cythan);

Have found a bug, want to contribute or had an idea ?

Go in the issue section and leave an issue or fix one!

Commit count: 22

cargo fmt