Files
harbour-core/harbour/tests/working/atest.prg
Antonio Linares 974bc2fbc2 make files
1999-05-05 05:45:23 +00:00

13 lines
161 B
Plaintext

// releasing arrays test
function Main()
local a := { 1 }
a[ 1 ] = a
a[ 1 ] = nil
QOut( "The array will try to be released now..." )
return nil