xlang-vm

Crates.ioxlang-vm
lib.rsxlang-vm
version0.0.5-alpha
sourcesrc
created_at2022-09-24 04:16:52.82486
updated_at2022-09-24 04:16:52.82486
descriptionA virtual machine for running Xlang programs.
homepagehttps://github.com/xlang-lang/engine
repository
max_upload_size
id672887
size11,409
Zack (trimorphdev)

documentation

README

xlang Crates.io GitHub GitHub issues GitHub Workflow Status

xlang is an experimental, garbage collected, dynamically-typed, interpreted programming language focused on performance.

note! xlang is in a pre-release state. It may not work and it may undergo serious breaking changes.

resources

  • xlang docs
  • todo - if you want to know what xlang aims to offer in the somewhat distant future

philosophy

  • syntax, semantics and naming conventions should be consistent and obvious.
  • there should only be one obvious way to do things.
  • unsafety only occurs on the compiler side. The virtual machine should assume that any input program is valid, for the sake of performance.
  • no "real" multithreading, only lightweight virtual "fibers". Only native functions are spawned in a different thread, to prevent halting the program.
  • minimal implicit type conversions
  • no weird or dumb syntax. Only syntax that makes sense and is easy to read.
  • minimal breaking changes. Breaking changes past the pre-release state must be necessary.
Commit count: 0

cargo fmt