commandPrint function

void commandPrint(
  1. List args
)

Function of print command

Implementation

void commandPrint(List args) {
  args = args.map((arg) => expEval(arg)).toList();
  lprint(args.join(' '));
}