Files
harbour-core/harbour/tests/working/spawn.prg
1999-05-19 11:55:04 +00:00

12 lines
216 B
Plaintext

//
// Spawn()
//
// This program adds a .HRB at run-time
//
function Main()
QOut( "We are now in spawn" )
HB_Run( "Hello.hrb" ) // Load & Run Hello.hrb
QOut( "We are back again" )
return nil