Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/src/prelude/Char/IsAlphaNum.hs
module Char where import IsAlpha import IsDigit isAlphaNum :: Char -> Bool isAlphaNum c = isAlpha c || isDigit c