Handbook
Glossary
alpha? ( ch -- ? )
Vocabulary
ascii
Inputs
ch
a character
Outputs
?
a
boolean
Word description
Tests for an alphanumeric ASCII character.
Definition
USING:
combinators.short-circuit
;
IN:
ascii
:
alpha?
( ch -- ? )
{
[
Letter?
]
[
digit?
]
}
1||
;
inline