the best programming
language on earth

This project is a programming language made from scratch in
typescript. Giving you the power to do what you want with it.

playground
fibonacci
fun fib(n) {
  if (n <= 1) {
    return n;
  }
  return fib(n - 2) + fib(n - 1);
}

for (var i = 0; i < 20; i = i + 1) {
  print fib(i);
}

Support class and OOP

This programming language will let you store your
favorite objects and use your best oop design patterns.

view docs
inheritance
class Doughnut {
  cook() {
    print "Fry until golden brown.";
  }
}

class BostonCream < Doughnut{}

BostonCream().cook();

Support functions

It even allows you to create some pretty complex functions
declarations if you prefer working with closures.

view docs
closures
fun makeFunction() {
  var name = "John";
  fun displayName() {
    print name;
  }
  return displayName;
}
var myFunc = makeFunction();
myFunc();

all features

playground