RosettaCodeData/Task/Catamorphism/Forth/catamorphism-1.fth

6 lines
126 B
Forth
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
: lowercase? ( c -- f )
[char] a [ char z 1+ ] literal within ;
: char-upcase ( c -- C )
dup lowercase? if bl xor then ;