3 lines
173 B
Text
3 lines
173 B
Text
var pool=List(); // pool could be any mutable container
|
|
pool.append(Data(0,1234)); // allocate mem blob and add to pool
|
|
pool=Void; // free the pool and everything in it.
|