SuperStrict mode?

BlitzMax Forums/BlitzMax Beginners Area/SuperStrict mode?

Otus(Posted 2007) [#1]
"Keyword SuperStrict
Description - Set SuperStrict mode."

So what is the superstrict mode actually and how does it differ from strict mode? Could someone please explain or point me to an answer?


Gabriel(Posted 2007) [#2]
All variables must specify a datatype in SuperStrict mode. Variables are no longer assumed to be integers as they are in Strict.


Brucey(Posted 2007) [#3]
Functions and Methods also need to specify the return Type (if they return something).


CGV(Posted 2007) [#4]
In others words, it makes BlitzMax work like a normal programming language. :)


Otus(Posted 2007) [#5]
Thanks, suspected the int thing, but good to know that it also affects functions.