* /harbour/* -> /*
* moved whole Harbour source tree one level up to
avoid single 'harbour' top dir
23 lines
349 B
Plaintext
23 lines
349 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/* Testing the Version() function */
|
|
|
|
/* Harbour Project source code
|
|
http://harbour-project.org/
|
|
Donated to the public domain by David G. Holm <dholm@jsd-llc.com>.
|
|
*/
|
|
|
|
#ifndef __HARBOUR__
|
|
#include "clipper.ch"
|
|
#endif
|
|
|
|
PROCEDURE Main()
|
|
|
|
? '"' + Version() + '"'
|
|
? '"' + hb_Compiler() + '"'
|
|
? '"' + OS() + '"'
|
|
|
|
RETURN
|