Zinc

A small, GC'd, dynamically-typed scripting language with a bytecode VM and a gradual static type checker, for scripting around native extensions. It's a solo, opinionated pet project, built around one person's taste.

Quick start

// hello.zn
println("Hello, world!")

// run it — the stdlib is embedded in the interpreter, no setup required
// $ zinc.exe hello.zn