On Thu, Sep 23, 2010 at 4:15 PM, Guido Berhoerster <[email protected]> wrote: > Hello, > > is it possible to serialize instances of custom type variables? > print -C/-v seems to print random garbage with ksh93t.
You can wrap the type into a compound variable, i.e. do compound c=( atype_t foo ) ; ... ; print -v c Irek _______________________________________________ ast-users mailing list [email protected] https://mailman.research.att.com/mailman/listinfo/ast-users
