Re: [Gambas-user] Signal #11 in Gambas 2

2011-05-05 Thread Jussi Lahtinen
I cannot reproduce with Gambas 2.23.0 nor with Gambas 3 rev 3831. @ Ubuntu 10.10 64bit What is your Gambas version and operating system? Jussi On Thu, May 5, 2011 at 08:43, nando wrote: > How to make the 4 line example signal #11 every time: > > 1. Place a breakpoint on the PRINT "hello" line

[Gambas-user] Signal #11 in Gambas 2

2011-05-04 Thread nando
How to make the 4 line example signal #11 every time: 1. Place a breakpoint on the PRINT "hello" line 2. Run the program (F5) 3. When the program stops at the breakpoint, highlight the word 'String[]' on line 2 -Fernando SUB x() DIM uu AS NEW String[] PRINT "hello" END --