isCharacter function

bool isCharacter(
  1. String string
)

Implementation

bool isCharacter(String string) {
  return string.length < 2;
}