Variable Declarations
(note): current documentation is subject to change.
Variables can be declared without a value..
var name
Most variables will have a value when declared..
var name = "Johnny"
var age = 22
var yearOfBirth = 2015 - 22
var isAlive = true
var something = nil
Updated less than a minute ago
