mech-core

Crates.iomech-core
lib.rsmech-core
version
sourcesrc
created_at2019-03-19 21:15:41.567955
updated_at2024-11-05 06:32:39.773421
descriptionThe Mech language runtime.
homepagehttps://mech-lang.org
repositoryhttps://github.com/mech-lang/mech
max_upload_size
id122533
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Corey Montella (cmontella)

documentation

http://docs.mech-lang.org

README

Mech is a language for developing data-driven, reactive systems like animations, games, and robots. It makes composing, transforming, and distributing data easy, allowing you to focus on the essential complexity of your project.

Try Mech online in your browser, or follow our progress on our blog.

Core

The language runtime. It's a small dataflow engine that accepts transactions of changes, and applies them to a compute network.

Contents

  • interpreter - The Mech interpreter, which executes Mech bytecode.
  • value - Defines Value, a unified datatype
  • kind - Defines Kind, which is used to annotate the kind of each varible
  • error - Define MechError, an error type that is used throughout the Mech system.
  • functions - User defined functions
  • matrix - Mech Matrix wraps NDArray for fast matrix computations
  • nodes - Defines various nodes which comprise the Mech AST.
  • types - Defines various types used by the Rust implementation of the Mech compiler.

Project Status

Mech is currently in the beta stage of development. This means that the language is at a suitable stage for a wider audience. While most language feature implementations are started, none are finished, and some new features may, while others could be removed. Backwards and forwards compatibility of Mech programs is not guaranteed at this time.

License

Apache 2.0

Commit count: 1520

cargo fmt