* /harbour/* -> /*
* moved whole Harbour source tree one level up to
avoid single 'harbour' top dir
23 lines
265 B
Plaintext
23 lines
265 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#require "hbtpl"
|
|
|
|
PROCEDURE Main()
|
|
|
|
/* Using public API */
|
|
|
|
? hbtpl_MyPublicFunction()
|
|
? hbtpl_MyPublicFunction_In_C()
|
|
|
|
/* Using public constant */
|
|
|
|
? HBTPL_MYCONSTANT
|
|
|
|
/* Using public command */
|
|
|
|
HBTPL_PRINT "Hello"
|
|
|
|
RETURN
|