2017-09-06 15:18 GMT+02:00 Cecil Westerhof :
> 2017-09-06 14:15 GMT+02:00 Gary Trakhman :
>
>> The second to last apply argument doesn't spread args like the last slot.
>>
>
> OK, I changed it to:
> (def digits
> (apply str (map char (inclusive-range (int \0) (int \9)
> (def hex-digits
>
2017-09-06 14:15 GMT+02:00 Gary Trakhman :
> The second to last apply argument doesn't spread args like the last slot.
>
OK, I changed it to:
(def digits
(apply str (map char (inclusive-range (int \0) (int \9)
(def hex-digits
(str digits
(apply str (map char (inclusive-ra
The second to last apply argument doesn't spread args like the last slot.
- terseness from phone
On Sep 6, 2017 8:11 AM, "Cecil Westerhof" wrote:
I have:
(def digits
(apply str
(map char (inclusive-range (int \0) (int \9)
and this gives:
"0123456789"
I also have:
(def