General-purpose language
Vela
One language for data, systems, and everything between.
A from-scratch, versatile language that fuses Python's readability, Rust's safety and performance, and R's data and statistics power.
fn summarise(xs: [f64]) -> Stats { let mean = xs.sum() / xs.len() let sd = xs.std() Stats { mean, sd, n: xs.len() }} let report = summarise(sales.revenue)print("mean ${report.mean}, sd ${report.sd}")Install
curl -fsSL https://developers.stretchgroup.ca/downloads/vela/vela-v0.4.0-linux-x86_64 -o vela-v0.4.0-linux-x86_64chmod +x vela-v0.4.0-linux-x86_64 && ./vela-v0.4.0-linux-x86_64 --versioncurl -fsSL https://developers.stretchgroup.ca/downloads/vela/vela-0.4.0-src.tar.gz -o vela-0.4.0-src.tar.gz