Path: utzoo!utgpu!news-server.csri.toronto.edu!bonnie.concordia.ca!thunder.mcrcim.mcgill.edu!snorkelwacker.mit.edu!apple!cambridge.apple.com!alms From: alms@cambridge.apple.com (Andrew L. M. Shalit) Newsgroups: comp.lang.scheme Subject: Re: Are numbers self evaluating? Message-ID: Date: 27 Feb 91 15:13:42 GMT References: <1991Feb26.205210.21352@cunixf.cc.columbia.edu> Sender: news@cambridge.apple.com Organization: Apple Computer Inc, Cambridge, MA Lines: 12 In-reply-to: amh@cunixb.cc.columbia.edu's message of 26 Feb 91 20:52:10 GMT In article <1991Feb26.205210.21352@cunixf.cc.columbia.edu> amh@cunixb.cc.columbia.edu (Adam M. Heyman) writes: While fooling around with MIT Scheme 7.1, found this interesesting phenomena. Apparently, multidigit numbrs are not self evaluating, they need to go through adds (+) and multiplies (*) in order to evaluate. My guess is that the reader uses + to add up the digits of a multi-digit number. This doesn't mean that such numbers aren't self-evaluating. They are. It just means that + is used to convert them from text to objects. -andrew