Simple Code Wiki
Advertisement
Requires version 0.2.0.3 or later: This function or property requires a specific version of the API.
It will not work on any other versions. Ignore this message, if you are using the latest version of the API.

array[string arrayName] { arrayContent }

Description: Creates a new array.
Parameters:
arrayName - Name of the array
arrayContent - Array's content
Returns: A new array instance.

Example[]

array[names] {Michael, Phil, Nico}

print[names(1)]

# Output: Phil


Advertisement