xxxxxxxxxx
=== Context separation ===
* Same as the first example. But change to the known 'client' context, which is addressable from the 'global' context.
<kua>
> context client
</kua>
* Start the client service, and change the client 'bob' variable which exists only in the 'client' context.
> start
Client started.
> bob 8081
> bob
'bob' is '8081'
> context
client
* Change back to the 'global' context. Test to see that the bob variable in 'client' is not in 'global'.
> context global
global
Unknown: bob