Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

README.md

File metadata and controls

30 lines (21 loc) · 1.03 KB

GitHub Workflow Status

SlowLang

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.

Hello World

You can write a hello world script in SlowLang like this:

print("Hello World!");

The semicolon is optional but strongly recommended.

While Loops

You can create a while loop like this:

while(true){
  print("Hello");
}