skol (for Syzkrash Ordinary Language) is a minimalist, keyword-less language for computers.
Skol is no longer in development. If you wish it was, however, feel free to fork the repository and keep it going.
Skol is not yet ready to be used in production, therefore you have to build it manually:
-
Clone and navigate into the repository:
git clone https://github.com/syzkrash/skol cd skol
-
Run
go build
:go build
-
Done! (yes, it's really that easy)
To compile and run a basic "Hello world!" program using the Python engine:
-
Create the file
hello.sk
:$Main( print! "Hello world!" )
-
Transpile to Python and run:
skol compile py hello.sk
-
Done!
For practical information, visit the Skol Documentation. For Skol's full story, visit qeaml's Skol Project Page.