* /harbour/* -> /*
* moved whole Harbour source tree one level up to
avoid single 'harbour' top dir
22 lines
207 B
Plaintext
22 lines
207 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
// Testing a static function call
|
|
|
|
PROCEDURE Main()
|
|
|
|
? "From Main()"
|
|
|
|
SecondOne()
|
|
|
|
? "From Main() again"
|
|
|
|
RETURN
|
|
|
|
STATIC FUNCTION SecondOne()
|
|
|
|
? "From Second()"
|
|
|
|
RETURN NIL
|