Markus Freitag
Markus Freitag
Currently the `update` method returns a new object, but it should also update itself.
The `SetListenAddress` / `SetListenAddressWithRouter` is really nice, but unfortunately it only supports the "ADDRESS:PORT" scheme. Do you can think of a good way to support also the other run functions...
It would be useful to be able to get the ThreadID of a domains CPU. Therefore add `thread_id` as an attribute to the CPU struct.
While `puts` is useful for debugging, it can not really be used for writing stuff to the terminal. The main reason for that is how strings are handled. Lets discuss...
``` def multiple() return "moo", 123, true end a, b, c = multiple() ```