Inline Collections

Collection = [ Key : Expression [ , ... ] ]

Creates a collection and returns it.

Examples

Dim cCol As Collection

cCol = ["A": 1, "B": 2, "C": 3]
Print cCol["B"]
2

See also