The following program makes two tab stops at columns 5 and 20 The array A is displayed beginning at the first tab stop, and its position in the array (i) is displayed at the second tab stop:

_tabs="5,20" // tab stops at columns 5 and 20
a = { "One", "Two" }
for i=1 to 2
  ? chr(9),A[i],chr(9),ltrim(str(i))
endfor
// chr(9) is equivalent to the tab key
// produces:
// One 1
// Two 2