Hi!

----

The following example should print the type of array members (e.g. "-C"
for "compound variable"):
$ ksh93 -c 'typeset -C -a x=( [0]=( a=1 ) [1]=( b=2) ) ; typeset -p x' #
... however with both ast-ksh.2009-05-05 and ast-ksh.2009-06-26 I get...
-- snip --                                        
typeset -a x=((a=1;))
-- snip --
... which is missing the "-C" attribute and array element [1], e.g.
expected output would be:
-- snip --
typeset -a -C x=((a=1;) (b=2;))
-- snip --

----

Bye,
Roland

-- 
  __ .  . __
 (o.\ \/ /.o) [email protected]
  \__\/\/__/  MPEG specialist, C&&JAVA&&Sun&&Unix programmer
  /O /==\ O\  TEL +49 641 3992797
 (;O/ \/ \O;)
_______________________________________________
ast-users mailing list
[email protected]
https://mailman.research.att.com/mailman/listinfo/ast-users

Reply via email to