Skip to content

A simple programming language designed to be slow

Notifications You must be signed in to change notification settings

zenonet/SlowLang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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");
}

About

A simple programming language designed to be slow

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Languages