... around ... evaluation. ... can ... expanding ... which not ... thus ... and ... I agree with all of this. But I have an additional comment about ex 1.5...
... I did some experimenting, at it seems that what the syntax checker objects to about (define (p) (p)) in the Beginning Student language is that p is defined...
I've got my calendar marked that we're meeting this week. Is this true? Also, what are we going to cover? At my current rate I'll probably have some...
YES, we are meeting this Wednesday (after the Snow Storm) at the Bellevue Library starting between 6:30 & 7pm running till 9pm (Library closes). So, ya'all...
George A. Smith @ SNS
zgas@...
Jan 6, 2004 3:48 am
344
I know that this is off-topic given our current direction, but Fowler has written a brief article on the Inversion of Control pattern which we studied during...
As agreed I'm posting the exercise 1.7 source that George and I were working on last time. It's in two files that I've added (under "Files") to the website. ...
For exercise 1.10, is there a non-recursive definition of (h n)? If so, what is it? If not, why not--what distinguishes (h n) from a function, like the...
I thought we were meeting this Wdnesday at the UW. Does anybody know where? Directions? Thanks, George ... Smith's Net Services 9505 S. 241 St. Kent, WA 98031...
George A. Smith @ SNS
zgas@...
Jan 20, 2004 4:54 am
348
George A. Smith- ... Hey. Me too. Apologies to everyone about me missing the last meeting. I skipped work that week and I just couldn't marshall sufficient...
In reference to meeting this Wednesday, the 21st, here's Stuart's original message from awhile back. Sounds like he's already reserved the room, if only we...
Hi all, I've still to check which doors will be open etc, but the room number is AE108, a conference room in the Electrical Engineering department. EE and...
Hi Stanley- ... Thank you (!) for pulling this together. I have an idea: Can some of us post our cell phone numbers. Just in case some people get lost, or...
Hi all, yet more directions to tonight's meeting, since the path I told you about in a previous mail is not very well lit and may be seen as a bit 'spooky'. ...
If you don't mind a nice walk, there's usually free parking on 15th Ave, north of 42nd St intersection. Once on campus, you'd walk toward the fountain from the...
Family matters have come up so don't wait on me. However, if someone posts notes or something I will be most appreicative. Especially in regards to what ...
At the last wingding meeting on the 21st we got into this discussion about how to proceed given that we didn't seem to be making much progress. I made the...
I think this is a great idea and in the spirit of the thing I'm trying to catch up after a week of nonScheme-ing. That being said, I don't really get the point...
Hi Stan- Thanks for jumping on the grenade. I recall offering to be your wingman. What are my duties? Should we chat? (My home phone is 206-784-9416.) What...
Wingding (@yahogroups.com) study group, Learning Scheme (the programming language) meeting is this Wednesday: When: 7pm, Febuary 4th Where: Bellevue...
George A. Smith @ SNS
zgas@...
Feb 3, 2004 2:39 am
363
Thanks Stan. I've really caught the bug for FP again. I have a whole stack of FP books, and from time to time I dig them out. One (Field/Harrison -...
When working with rational numbers, what needs to be done to handle both positive and negative arguments? Is there a truth table or something that needs...
; Requires you to "fix" the book's gcd procedure ; (define (gcd a b) (if (= b 0) (abs a) (gcd (abs b) (remainder (abs a) (abs b))))) (define (make-rat n d) (if...