Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 455 Bytes

File metadata and controls

22 lines (14 loc) · 455 Bytes

atom

Introduction

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.

Example

import std;
import std/map;

let data = map.Map();
data.set("name", "Atom");

println(data.get("name"));

Documentation

Documentation is available at atom-lang.gitbook.io.