When you're working on a macro, how do you view a variable to make sure its actually doing what you think its doing?
For example:
\define vassum2(here myfield)
<$text text={{{=[title[$here$.VAShi]get[$myfield$]] =[title[$here$.VASlo]get[$myfield$]] =[title[$here$.disAbil]get[$myfield$]] +[sum[]]}}}/>
\end
\define vassum()
<$list filter="[all[current]addsuffix[.VAShi]fields[]regexp[\d\d\d\d-\d\d-\d\d]]" variable="field">
<$macrocall $name=vassum2 here="$(currentTiddler)$" myfield=$field$ /> *<-- here?
</$list>
\end
<<vassum>>
Like if I want to check on the contents of the variable "field" in the vassum macro, how would I view that? At the asterisk I tried $field$ <field> <<field>> and $(field)$
I also tried $myfield$ and <$text text=$myfield$/> in the vassum2 macro
Thanks,
- Dave