There basic variable types:
| Type | Description |
|---|---|
| byte | Typically a single octet(one byte). This is a byte type. |
| int | The most natural size of integer for the machine. |
| float32 | A single-precision floating-point value. |
Declaring a Variable
Using var keyword:
var variable_name type = expression
Using short variable declaration:
variable_name:= expression