Probably a real easy one, but i cant find it ;(
How can I see how many and what contexts are currently active?
Norman.
more contexts
more contexts
-- (define? (Cornflakes))
Maybe like this (run from MAIN context):
Or is this not what you are looking for?
Peter
Code: Select all
(dotimes (x (length (symbols))) (if (context? (eval (nth x (symbols)))) (println (nth x (symbols)))))
Peter