This documentation is still a work in progress
Full of Potential
Vectors, matrices, file I/O, math, and more built-in. No external dependencies needed.
Learn more →A small but mighty language
use Vec from "crux:vector";
fn main() {
let v = Vec(3, [1.0, 2.0, 3.0])?;
let normalized = v.normalize()?;
println("Vector: " + string(v));
println("Normalized: " + string(normalized));
}
main();Vectors, matrices, file I/O, math, and more built-in. No external dependencies needed.
Learn more →