* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
14 lines
148 B
Plaintext
14 lines
148 B
Plaintext
// Testing memory release
|
|
|
|
PROCEDURE Main()
|
|
|
|
LOCAL a, b
|
|
|
|
a := "Hello"
|
|
b := 2
|
|
|
|
HB_SYMBOL_UNUSED( a )
|
|
HB_SYMBOL_UNUSED( b )
|
|
|
|
RETURN
|