Can someone tell me why sss is printed twice on Formulat oupput window, which means premain() is executed twice? I tested it on (SPY, D)?
var sss = 0;
function preMain() {
sss = sss + 1;
debugPrintln("sss = " + sss);
}
function main() {
}
var sss = 0;
function preMain() {
sss = sss + 1;
debugPrintln("sss = " + sss);
}
function main() {
}
Comment