A simple stack-based programming language.
./Stacko.py <script_path>
./Test.py
"Hello, world!" printLine
10 dup 0 = not while {
dup printLine # Print counter value
1 - # Subtract one from counter
dup 0 = not # Check if counter is zero
}
See the official Stacko docs.