Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Koto Scripting Language

This page provides a small introduction to the Koto scripting language to help you get started with akesi lili development. Koto is a simple and expressive programming language.

For a detailed introduction to Koto, please consult the Koto documentation.

Example

Here is a small example of what Koto code looks like:

# Define a function to greet a person
person = {
 name:'John Doe'
}

greet = |name|
 print('Hello {name}!')

# Call the function with a name
greet(person.name);

Disclaimer

io and os Koto modules are disabled for akesi lili on purpose. Internally akesi lili works with a file system abstraction.