skol (for Syzkrash Ordinary Language) is a minimal, explicit and otherwise ordinary programming language.
Designed with multi-target compilation in mind, skol can be transpiled to Python or interpreted directly via Simulation mode.
Here’s the traditional Hello World program in skol:
// define function the main function
$Main
(
// print to standard output
print! "Hello World!"
)
// call the main function:
// most compilation targets don't call the main function automatically
Main!
Check the Introduction if you know nothing, or the Syntax and Standard Library for a full reference. If you wish to know more about skol’s inner workings, check the Architecture.