| 1234567891011121314151617 |
- ' createlist.bmx
- ' create a list to hold some objects
- list:TList=createlist()
- ' add some string objects to the list
- listaddlast list,"one"
- listaddlast list,"two"
- listaddlast list,"three"
- ' enumerate all the strings in the list
- for a$=eachin list
- print a$
- next
|