listPrint method
just for to remember this handy .forEach(print) command
Implementation
void listPrint(var thisList, String msg) {
// if (operation == ('print')) (thisList.forEach.print());
// else (thisList.add(operation));
print('---------------' + msg);
thisList.forEach(print);
print('------------------------------------end');
}