Example
Records and iteration.
Inscript can store structured records, gather them into a list, and iterate across fields.
remember an order called order1 with total as 75 and status as active
remember an order called order2 with total as 30 and status as active
remember an order called order3 with total as 120 and status as pending
remember a list called orders with order1 and order2 and order3
each the orders show total
Output:
75
30
120
each binds an iterator context, so show total resolves total as a field on the current record.