gavin-mcdiarmid/aspl
A Simple Programming Language
This soon to be compiler intends to implement ASPL, a staticly typed, garbage collected language with simple in-place algebraic subtyping.
mod std = import "std"
proc println = std.io.println
proc main() {
let greeting = "Hello World!"
println(greeting)
}