| From: Eli Barzilay (eli at barzilay.org) Date: Thu Jun 15 13:50:22 EDT 2006 |
|
On Jun 15, Doug Orleans wrote:
> I don't know what the difference is between "Begin-like Keywords"
> and "Define-like keywords". [...]
(define foo
bar
baz)
(begin foo
bar
baz)
`begin' is actually like any function call, except for the case where
there is nothing that follows it on the same line:
(begin
bar)
(foo
bar)
--
((lambda (x) (x x)) (lambda (x) (x x))) Eli Barzilay:
http://www.barzilay.org/ Maze is Life!
| Posted on the users mailing list. |
|