$ echo $KSH_VERSION
Version JMP 93u+ 2012-02-29
$ arr=( )
$ typeset -p arr
typeset -C arr=()
$ typeset -A arr    <-- explicitly change the attribute
$ typeset -p arr
typeset -A arr=([0]=())    <-- I would expect arr to be an empty
associative array here ??
$ unset arr
$ typeset -p arr
typeset -C arr=()    <-- It was not unset ??
$ unset -v arr
$ typeset -p arr
typeset -C arr=()
$
_______________________________________________
ast-users mailing list
[email protected]
https://mailman.research.att.com/mailman/listinfo/ast-users

Reply via email to