home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 8
/
CDASC08.ISO
/
VRAC
/
OBJ20D.ZIP
/
TESTSTCK.PRG
< prev
next >
Wrap
Text File
|
1993-05-15
|
602b
|
27 lines
// Probando la Clase TStack
//----------------------------------------------------------------------------//
function Main()
local stk := TStack():New() // Llamamos al método Constructor
stk:Push( 12 ) // Guardamos valores en el Stack
stk:Push( "Hola" )
stk:Push( Date() )
? stk:Len()
? stk:Pop() // Recuperamos valores del Stack
? stk:Pop()
? stk:Pop()
? stk:Len()
stk:Push( "Adios" )
? stk:Pop()
return
//----------------------------------------------------------------------------//