Oxygen

let
ACTION: defines a variable or object
USE: create a new variable or indirect object
EXAMPLE:
let s="this is a string"
print typeof s 'result: 'string'

REMARKS: Similar to using 'dim' but the type is inferred from the assigned value.

RELATED: dim var