In Io, there is a getSlot()
method which allows you to convert a string to a slot reference, but is there something similar to get a reference to an Object? For example:
myObject := Object clone
myObject myMethod := method("Hello World!" println)
targetObject := "myObject"
a := getObject(targetObject) clone
getObject()
doesn't exist, so what can go in its place such that "a" ends up being a clone of "myObject"?