SlowLang is a semi-eso programming language I designed just for fun.
Syntactically, it's very simmilar to the C-like languages such as C# or Java.
Right now it doesn't have a lot of functionality. Basically everything you can do is infinite loops, input, output, getting the current Time and variables.
SlowLang is an interpreted language which is based on the SlowLangEngine.
The parser of SlowLangEngine is pretty extendable so if you want, you can create more cool statements and create a pull-request.
If you need help, just
create an Issue.
You can write a hello world script in SlowLang like this:
print("Hello World!");
The semicolon is optional but strongly recommended.
You can create a while loop like this:
while(true){
print("Hello");
}