isAscii function

bool isAscii(
  1. int ch
)

Implementation

bool isAscii(int ch) => ch >= $nul && ch <= $del;