See ChangeLog entry 19990602-16:00 EDT David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
1999-06-02 22:24:55 +00:00
parent 741ffe32b2
commit a67daf4080
2 changed files with 26 additions and 0 deletions

View File

@@ -1,3 +1,10 @@
19990602-16:00 EDT David G. Holm <dholm@jsd-llc.com>
+ tests/broken/codebloc.prg
- Output doesn't match Clipper. Clipper outputs NIL and 42,
(both 5.2e and 5.3b), but Harbour outputs NIL and NIL (as
tested with Harbour built using Borland C++ 3.1 using the
build31.bat and makefile.b31 files)
19990602-22:10 CET Eddie Runia
* tests/working/run_exp.h
gtApi and new console functions added

View File

@@ -0,0 +1,19 @@
Function Main()
Local nTest
Local bBlock1 := MakeBlock()
Local bBlock2 := {|| DoThing( @nTest ), qout( nTest ) }
eval( bBlock1 )
eval( bBlock2 )
Return( NIL )
Function MakeBlock()
Local nTest
Return( {|| DoThing( @nTest ), qout( nTest ) } )
Function DoThing( n )
n := 42
Return( NIL )