nlPrintInstComments
nlPrintInstComments(
o_formatter
o_instance
)
=> t
Description
Prints the comments for an instance.
Arguments
Value Returned
Examples
The following example prints the comments for the given instance:
defmethod( nlPrintInstComments ((formatter
xyzFormatter) inst)
let( (nl)
callNextMethod()
nl = nlGetNetlister(formatter)
nlPrintComment( nl "anything else")
) )
Return to top