RosettaCodeData/Task/String-case/Joy/string-case.joy

9 lines
209 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
DEFINE
islower == ord 109.5 - abs 13 <;
isupper == ord 77.5 - abs 13 <;
tolower == [[isupper] [32 +] [] ifte] map;
toupper == [[islower] [32 -] [] ifte] map.
"alphaBETA" tolower.
"alphaBETA" toupper.