# File lib/kwartz/parser.rb, line 26 def is_alpha(ch) return (?a <= ch && ch <= ?z) || (?A <= ch && ch <= ?Z) end