• Welcome to Powerbasic Museum 2020-B.
 

News:

Forum in repository mode. No new members allowed.

Main Menu

undefined types

Started by James C. Fuller, June 15, 2019, 06:48:48 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

James C. Fuller

Charles,
   I found a couple of undefined types while testing some of the samples.
    examples\oop\features\Classic.02bas
    examples\oop\features\Isolate_globals.o2bas
James


Charles Pegge

Thanks James.

I'll check the OOP files again, and I think the Pool example can be dispensed with.


Chris Chancellor

Hello Charles

Are there any more changes such as 


        zstring * 64

       be converted to

       as String


  i haven't started compiling my old programs under the new O2 beta version yet
but need to know more before jumping into it



Charles Pegge

Yes.

If you are using low-level Unicode types:

bstring2 is changed to wbstring
zstring2 is changed to wzstring (wzstring is the same as wchar)

Also, $ & % endings are no longer ignored, but this is easy to detect.

Chris Chancellor