On 10/9/2020 10:11 AM, Adam El Mazouari wrote:
An example is this:
(define (square-all lst) (if (null? lst)
'()
(cons (square (car lst))
(square-all (cdr lst)))))
As you can see, you've got:
* methods included by default (define, cons)
* booleans (null?)
* user-introduced vars (lst)
shown in the same color. It's really not clear. I'd like for them to
be in different colors.
--Adam.
The colors of most things in DrRacket are adjustable: see Preferences in
the Edit menu. There are several general color schemes and/or you can
set colors individually for most syntax items.
Note that there are multiple (2nd level) tabs under Color [and also
under Editing].
George
--
You received this message because you are subscribed to the Google Groups "Racket
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/racket-users/d343842b-44ee-df36-2ac9-31b3b8e3ead3%40comcast.net.