What i mean by this is in python I could do id(variable) to return a identifier for the string. Docs say : Return the “identity” of an object. This is an integer (or long integer) which is guaranteed to be unique and constant for this object during its lifetime. Two objects with non-overlapping lifetimes may have the same id() value.
Does nim have a similiar function or way of identifying a variable?