AKO is a programming language built to be used by no-code or low-code tools
[WIP] Project under construction
It's a scripting language designed to be embedded in application or webApp
The 2 main goals are
- Make the language easy to learn and use for beginner
- Make a language that can easily be represented visually in UI land
For those reasons, Ako tries to stay simple
- Built around expressions (think about excel formula)
- Simple scope design, 1file = 1task = 1scope
- Sequential execution (no callback or async/await)
- No class or OOP (no
this,selforobjectscope) - Only one loop
For(no while, foreach, ...) - No switch, goto, try/catch, ...
- The code should be modular and easy to share and reuse
# Install Ako interpreter
npm install -g ako-lang
# Execute
ako ./test.akoSoon
Soon