commandLength function

int commandLength(
  1. List args
)

Function of str_length command

Implementation

int commandLength(List args) {
  final String str = expEval(args[0]);
  return str.length;
}