One general possibility in CADINP (general manual "sofistik basics", section "LET - and STO - Variables"):
"To trace the assignment of values, there is a command DBG#. This will toggle test prints and an interactive debug mode. DBG# uses the variable #0, which
can not be used for other purpose therefore
* DBG#0 No output of intermediate values
* DBG#1 Output of the generated input records
* DBG#2 Additional output of all value assignments
* " and so one
In your example this looks like this:
Code:
dbg#2
LET#A 10 ,22 ,34 ,55 ,76 ,83
LOOP#1 A ! Only the name , #A would be the value 10!
KNOT #1+1 X #A(#1)
ENDLOOP
For only special values there is another simple thing, the "prt#"-instruction, like:
KNOT #1+1 X #A(#1); prt#A(#1)
And in the manual: "For more comfort one should use TXB / TXE or <TEXT> within literal text."