namespace question: Shouldn't the example below create the variable 'ns_a2' within the namespace a.b?
ksh -c 'namespace a.b { typeset -a ns_a1=(4 5 6 ) ; fc() { typeset -a
ns_a2=( 7 8 9 ) ; } ; } ; typeset -a a=( 1 2 3 ); .a.b.fc ; typeset
-a'
a=(1 2 3)
ns_a2=(7 8 9)
Irek
_______________________________________________
ast-developers mailing list
[email protected]
http://lists.research.att.com/mailman/listinfo/ast-developers
