[pure-lang-users] catmap bug
Status: Beta
Brought to you by:
agraef
|
From: Eddie R. <er...@bm...> - 2008-09-26 17:05:49
|
catmap for strings has a bug.
> upcase s::string = s-32 if s!0 >= "a" && s!0 <= "z"; = s;
> catmap upcase "ainsworth";
"A"+("I"+("N"+("S"+("W"+("O"+("R"+("T"+("H"+[]))))))))
The inner most parenthesis should be ("H"+"").
e.r.
|