Search found 1 match

by reynard
Mon Mar 08, 2010 4:39 am
Forum: Scheme
Topic: basic question about define and set!
Replies: 2
Views: 9039

basic question about define and set!

Hello, Suppose I want to store a value for later use. I define it using: (define balance 10) Later on I apply a function to #'balance and want to store the result for later use. The old value of #'balance is useless, and I do not want to introduce a new name every time for the result of function app...