Foxglove

A low-level Lua-like programming language that adds support for object oriented programming, types, and packages with a focus on readability and simplicity.

Note

Foxglove is in the planning/development phase. There is no compiler yet.


"Hello, world!" sample program:

import io from foxglove

local function main()
  println("Hello, world!")
end