This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: hobbit.scm call-order.patch



> I don't have time to research things further, but I'd like to confirm
> my understanding of things.  What does Scheme have to say about argument
> order evaluation?

Arguments may be evaluated in any order, but all operands to a
function call are evaluated before the function is applied.  It's
about the same as C.