Search found 1 match

by octowuss
Fri Jan 01, 2021 7:30 am
Forum: Whither newLISP?
Topic: "place" in the function "inc"
Replies: 5
Views: 7241

Re: "place" in the function "inc"

That doesn't make any sense - how does the inc place refer to the location in the function sum to update? Also, why does the example have a 0 after the x in the parameter list for sum ? I can leave that out and the function still works! > (define (sum (x)) (inc 0 x)) (lambda ((x)) (inc 0 x)) > (sum ...