News:

Building a 3D Ray Tracer  By stevmjon

Main Menu

PBList

Started by empty, February 14, 2006, 02:20:43 PM

Previous topic - Next topic

empty

this a little library that give you some list support (similar to TList/TStrings in Delphi... just not OOP).


Example source

PlayBASIC Code: [Select]
sl = NewStringList()

AddToStringList(sl, "How are you?")
InsertToStringList(sl, 0, "Hey, You!")

For i = 0 To GetListItemCount(sl) - 1
Print GetStringListItem(sl, i)
Next i
DeleteList(sl)
Sync

WaitKey