Hi Folks,
I have a basic question encountered doing Level 3 - Namespace - Practical Questions.
how exactly is the grammar for referencing namespace with \d?
- get method
c:3 
\d .test
a:1
b:2
f1:{a+b+ get `..c}
f2:{a+b+ `.[`c]}
\d .
my questions are:
1. why get method requires two dots for param c?
2. why `.[`c] requires one dot?
3. why `.[`test1][`a] doesn't work, if .test1.a exist, but only `.test1.a would work?
Thank you!