📄️ Inbuilt types
Aki has a number of inbuilt types that are used to represent basic data types. These types are used to represent numbers, characters, and other basic data types.
📄️ Arrays
Aki supports arrays with a fixed size. Arrays are declared with the type followed by the size in square brackets. The size must be a constant expression.
📄️ Enums
Enums in aki are automatically "namespaced" such as enum class in c++. This is to avoid name clashes.
📄️ Complexes
What you may know as classes/structs in other languages, are called complexes in aki.