Skip to content
Splizard edited this page Apr 18, 2017 · 2 revisions

Something is the dynamic type in the i programming language.
Any value can be assigned to Something.

    var something = ?
    something = 4
    print(something) //-> "number"

In order to retrieve the original value, you need to index something with the type you are expecting, for example:

    print(something.number) //-> 4
Clone this wiki locally