See changelog

This commit is contained in:
Eddie Runia
1999-05-25 20:43:18 +00:00
parent 17d900bfee
commit ef0eda8883
2 changed files with 21 additions and 6 deletions

View File

@@ -1,3 +1,7 @@
19990525-21:30 CET Eddie Runia
* tests/working/spawn2.prg
Warning added if not compiled using /gHRB
19990525-19:15 CET Eddie Runia
* source/runner/runner.c; source/runner/run_exp.h; source/runner
created. currently in transition.

View File

@@ -1,11 +1,22 @@
//NOTEST
//
// Spawn2 called from Spawn
//
function Main()
function Spawn2()
QOut( "Hi, I am Spawn2" )
QOut( "Let's call a function from Spawn()" )
SomeWhereElse()
QOut( "Back to Spawn2" )
local n := 0
while !Empty( ProcName( n ) )
n++
end
if ProcName( n - 1 ) != "HB_RUN"
QOut( "Please compile me with /gHRB" )
QOut()
QOut( "Then : hbrun spawn" )
else
QOut( "Hi, I am Spawn2" )
QOut( "Let's call a function from Spawn()" )
SomeWhereElse()
QOut( "Back to Spawn2" )
endif
return nil