I am currently setting a multi-level model, and am hoping to use the NetLogo LevelSpace extension. I want the parent model to request the value of a global variable from a child model, but am having a little difficulty with the syntax. I can find examples of requests for information from agents e.g.
let turtle-id 0
(ls:report model-id [ [ color ] of turtle ? ] turtle-id)
but this doesn't seem to work for global variables e.g., I would like to do something like:
ls:report model-id [child-global-variable]
Is this possible, or am I completely missing the way that LevelSpace works?