primitive types (integer, string, etc.) are now classes. However, to access the value of the class, you simply use the name of the object (ex, x = y). There is no need to refer to a class property (x.value = y.value).
To implement an abstract data class (e.g. inches), we need the value property, so if we have dim x as inches (our class) we should use: x.value = 3
is that honest
Larry
source
share