Ok I see how that works, I wasn't aware of the ..C syntax. That solves the 
problem asked about, but I'm left with another question. Take for example

module A
module B
foo()=4
export foo
end
foo()
end

That doesn't work, I get "ERROR: foo not defined" because foo is not 
actually in the A namespace. But if I add "using B" I get "ERROR: B not 
found". So how do I define B inside A, but also have A import the things 
that B exports?


>

Reply via email to