Page 1 of 1
Posted: Tue Nov 12, 2002 9:29 am
by BackupUser
Restored from previous forum. Originally posted by talun.
Hi, I'm intersted to know if is possible to simulate dynamic arrays in PureBASIC (maybe with the List?).
Thank you
Sergio Tallone
Posted: Tue Nov 12, 2002 12:40 pm
by BackupUser
Restored from previous forum. Originally posted by Kale.
yep use LinkedLists for a dynamic way of storing ordered lists of data. you can also create linkedlists using structures.
Code: Select all
Structure simpleStructure
one.s
two.s
three.s
EndStructure
NewList structuredList.simpleStructure()
--Kale
New to PureBasic and falling in Love! 
Posted: Wed Nov 13, 2002 10:11 am
by BackupUser
Restored from previous forum. Originally posted by talun.
Kale, many thanks you for your reply.
Sergio