Types
-
Data Types
- Numeric
int float double byte - String
v name : string = "ellie"; - Char
v firstName : char = 'e'; - Cloak
v letters : (char, char, char, char, char) = ('e', 'l', 'l', 'i', 'e'); - Array
v letters : [char, *] = [ 'e', 'l', 'l', 'i', 'e' ]; - Collective
v letters : {int, char} = { 1 :'e', 2 :'l', 3 :'l', 4 :'i', 5 :'e' } - Arrow Functions
v callingAwesomeness : @(string, int):string = @(name, count):string { v awesomenes : string; for (element, count) { awesomenes += "ellie"; } ret awesomeness; } - bool
- Numeric