We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Basic types are very basic, this list is sure to expand later on:
var int bool float string array
The notables:
###var var stands for variant and it will hold any type. See typing
###array Arrays will hold... well, an array of items. array is a templetized type, so you can specify the type of the items.
array var_array = [1, "hello"]; //no type, array of variants array<int> int_array = [1, 2]; //ints
There was an error while loading. Please reload this page.