Handbook
Glossary
ch>lower ( ch -- lower )
ASCII
Prev:
ascii? ( ch -- ? )
Next:
ch>upper ( ch -- upper )
Vocabulary
ascii
Inputs
ch
a character
Outputs
lower
a character
Word description
Converts an ASCII character to lower case.
Definition
USING:
kernel
math
;
IN:
ascii
:
ch>lower
( ch -- lower )
dup
LETTER?
[
32
+
]
when
;
inline