commandCount function
Function of count command
Implementation
void commandCount(List args) {
final num = expEval(args[0]);
final block = defineBlockEnd(cur);
for (var i = 0; i < num; i++) {
runBlock(block[0], block[1], block[3]);
}
}
Function of count command
void commandCount(List args) {
final num = expEval(args[0]);
final block = defineBlockEnd(cur);
for (var i = 0; i < num; i++) {
runBlock(block[0], block[1], block[3]);
}
}