We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
i has support for lists of any type.
To make an empty list: var l = []
var l = []
Elements can be put inside of the list, all the elements in a list are required to be the same type.
l += "Element"
Lists can be used just like arrays, they can be indexed, modified and looped over.
print(l[0]) l[0] = "Different" for element in l print(element) end
Lists can also be initialised literally.
var fruit = ["Orange", "Apple", "Pear"]