Example: ListTag function

Dim loft List As Integer
loft%("first") = 0
loft%("second") = 1
loft%("third") = 2
' Print list tags for the elements of Loft,
' each on its own line.
ForAll i In Loft%
   Print ListTag(i)
End ForAll
' Output:
' first
' second
' third