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.
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.
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.
closures
fun makeFunction() {
var name = "John";
fun displayName() {
print name;
}
return displayName;
}
var myFunc = makeFunction();
myFunc();
all features
functions
supports user defined funcitons and has built in functions
class and oop
supports user defined class and any oop patterns such as inheritance
var
assign your favorite data type to your definied variable
math
perfom any complex math operations such as % / * + - ^
loops
supports any loops such as for and while loops
if statment
supports boolean alegbra, so you can create customs conditions