Atom: The fundamental in a language universe 🌖

atom logo

It's a dynamic, strongly styped, functional language with interpreter implementation.

fn greet | name, message | ->   “Hello ” + name + “, ” + message end greet("Bharat", "Welcome!") > Hello Bharat, Welcome!

The language supports only computations and has no side effects. It's a design choice. 🤗