Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Found BUG... SWAP, TYPE
#1
I found a little bug that should be fixed soon:

Code:
SCREEN 0
TYPE Bla
a AS STRING * 21
END TYPE
DIM Blub(1 TO 2) AS Bla
Blub(1).a = "123456"
Blub(2).a = "SWAP"
PRINT Blub(1).a, Blub(2).a ' output: 123456 SWAP
SWAP Blub(1).a, Blub(2).a
PRINT Blub(1).a, Blub(2).a ' output: SWAP56 1234
                           ' but should be:
                           ' SWAP 123456
SLEEP

Edit: I'am using Version 0.14 Beta...

best regards,
Stormy
Reply
#2
Fixed, changes are in CVS, only the runtime library had to be modified, compiler stills the same.. thanks..
Reply
#3
Where i can find the file to replace or what name has it ?
Reply
#4
It's at the top: http://cvs.sourceforge.net/viewcvs.py/fb...ortby=date

But you should use a CVS client, the details are at: http://sourceforge.net/cvs/?group_id=122342
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)