Forgive me if this is daft and often answered question but I'm trying to get my head around Julia OO.
Am I correct in thinking that as there is no binding between methods and types that I have to explicitly pass in an instance of a type to a method. If that is the case then how do I hold state on a remote object. I call a function that creates an instance of a type say something simple. type State sock end I just want to hold a socket reference. If the first remote function I call creates State then how can the next function I call obtain the state instance. Do I have to create a remote reference or something which it can use? Thanks Bob
