non-strict = blitzmax strict?
Monkey Forums/Monkey Programming/non-strict = blitzmax strict?
| ||
| are there any differences between monkey non-strict and blitzmax strict? |
| ||
| I don't think so, at least that's what Mark said in his blog a while ago. Personally I use Strict in Monkey. |
| ||
| oh yeah it seems you can create new variables without initializing them, so its either non-strict or superstrict superstrict is better i spose |
| ||
| 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... :) |
| ||
| But unlike Strict in BlitzMax, Non-Strict in Monkey does not generate slower code than Strict in Monkey? |