Re: What am I doing wrong

2017-09-06 Thread Cecil Westerhof
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 >

Re: What am I doing wrong

2017-09-06 Thread 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 (str digits (apply str (map char (inclusive-ra

Re: What am I doing wrong

2017-09-06 Thread Gary Trakhman
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