|
|
|
|
|
by loup-vaillant
3597 days ago
|
|
So do I. I prefer to type out `=` three times, for a simple reason: while not being more verbose than the `setf` example (3 additional tokens in both examples), it makes all 3 lines the same, which is more regular. We could make all 3 lines the same with `setf`, but that would be a bit more verbose: (setf x 10)
(setf y 20)
(setf z 30)
In a program that heavily use the assignment statement, I vote for the shorter form, `=`. |
|
Anyway, this is hardly the main point of the article (and probably detracts from it).