Something - qlova/ilang GitHub Wiki
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