help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Understanding dotimes skipping by 2


From: Noam Postavsky
Subject: Re: Understanding dotimes skipping by 2
Date: Fri, 28 Sep 2018 14:16:31 -0400

On Fri, 28 Sep 2018 at 12:26, Joost Kremers
<joost.kremers@phil.uni-goettingen.de> wrote:

> - Note also the use of `(1+ x)' instead of (+ x 1). Though
>   honestly I don't know what the difference really is. It's just
>   the idiom I'm used to.

There's no difference except for the human reader: compare
(disassemble (lambda (x) (1+ x))) and (disassemble (lambda (x) (+ 1
x))), the same code is generated.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]