28 lines
334 B
Plaintext
28 lines
334 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
*
|
|
* Copyright 2011 Viktor Szakats (harbour syenar.net)
|
|
* www - http://harbour-project.org
|
|
*
|
|
*/
|
|
|
|
#include "simpleio.ch"
|
|
|
|
PROCEDURE Main()
|
|
LOCAL a, b, c, d
|
|
|
|
? HB_GSAPI_REVISION( @a, @b, @c, @d )
|
|
|
|
? a
|
|
? b
|
|
? c
|
|
? d
|
|
|
|
? HB_GS( { "--version" } )
|
|
|
|
RETURN
|