Files
harbour-core/harbour/tests/multiarg.prg
Dave Pearson b6f9292950 2001-11-01 08:16 GMT Dave Pearson <davep@davep.org>
* tests/multiarg.prg
      * __PValue() --> HB_PValue().
2001-11-01 08:18:39 +00:00

31 lines
514 B
Plaintext

//
// $Id$
//
//
// MultiArg
//
// Testing of multiple arguments
//
// Date : 1999/05/24
//
// Written by Eddie Runia <eddie@runia.com>
// www - http://www.harbour-project.org
//
// Placed in the public domain
//
function Main()
ShoutArg( 1, "1", 2.5, .T. )
ShoutArg( 2, "1", 2.5, .T. )
ShoutArg( 3, "1", 2.5, .T. )
ShoutArg( 4, "1", 2.5, .T. )
ShoutArg( 5, "1", 2.5, .T. )
return nil
function ShoutArg( nArg, x1,x2,x3,x4,x5,x6,x7,x8,x9,x10 )
QOut( nArg, "==", HB_PValue( nArg ) )
return nil