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);
Helpful links
- Koto Language Guide: Base overview about Koto
- Koto Core Library: Documentation of the Koto core library
- Koto Extra Libraries: Documentation of the Koto extra libraries
Disclaimer
io and os Koto modules are disabled for akesi lili on purpose. Internally akesi lili works with a file system abstraction.