| 🧩 Interpreted register-based bytecode VM | ⚡ JIT compiled to native code | 🚀 AOT standalone native · no runtime |
vesta combines the control of C, the object model of Java and the ergonomics of Python
in a single statically-typed language.
The same code scales from a script to an operating system — down to kernels, drivers and
firmware — because that's a deployment choice, not a different language.
u64fib(u64 n) {
if (n < 2) return n;
returnfib(n - 1) + fib(n - 2);
}
i32main(string[] args) {
println("fib(10) = ${fib(10)}");
return0;
}