atom is a dynamically typed interpreted language with a bytecode compiler and stack based VM. My goal is to build a performant language which is fun to build with a clean and minimalistic design.
import std;
import std/map;
let data = map.Map();
data.set("name", "Atom");
println(data.get("name"));
Documentation is available at atom-lang.gitbook.io.