Files
harbour-core/harbour/tests/working/calling.prg
Antonio Linares 974bc2fbc2 make files
1999-05-05 05:45:23 +00:00

32 lines
427 B
Plaintext

// Calling different PRG functions
function Main()
Second()
DO Fourth WITH "from Fourth() function" // Testing the old fashion DO ...
QOut( "Ok, back to Main()" )
return nil
function Second()
QOut( "Ok, this is from Second() function call" )
Third()
return nil
function Third()
QOut( "Ok, this is from Third() function call" )
return nil
function Fourth( cText )
QOut( cText )
return nil