non-strict = blitzmax strict?

Monkey Forums/Monkey Programming/non-strict = blitzmax strict?

slenkar(Posted 2011) [#1]
are there any differences between monkey non-strict and blitzmax strict?


Xaron(Posted 2011) [#2]
I don't think so, at least that's what Mark said in his blog a while ago. Personally I use Strict in Monkey.


slenkar(Posted 2011) [#3]
oh yeah it seems you can create new variables without initializing them,

so its either non-strict or superstrict

superstrict is better i spose


Xaron(Posted 2011) [#4]
Yep. With SuperStrict (Monkey:Strict) you have more trouble during compile time but after all you can avoid a lot of time consuming bug search due to wrong variable names/initializing and so on... :)


Canardian(Posted 2011) [#5]
But unlike Strict in BlitzMax, Non-Strict in Monkey does not generate slower code than Strict in Monkey?