Advertisement
delysio

Untitled

Dec 8th, 2020
1,271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.16 KB | None | 0 0
  1. function isLetter(c: char): boolean;
  2. begin
  3.     case Ord(c) of
  4.         0..64, 91..96, 123..255: result := false;
  5.         else result := true;
  6.     end;
  7. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement