Code: Select all
> (net-eval "localhost" 4711 "(context 'C)" 1000)
C
> (net-eval "localhost" 4711 "(context)" 1000)
MAIN
> _
Code: Select all
> (dolist (ea '((context 'C) (constant 'v 8) (context MAIN))) (eval ea))
ERR: symbol not in current context in function constant : MAIN:v
> _
Code: Select all
> (new Class 'Thing)
Thing
> (set 'Thing:attribute 1)
1
> (constant 'Thing:attribute 1)
ERR: symbol not in current context in function constant : Thing:it
> _
m i c h a e l