http://git.nex-3.com/arc-wiki.git?a=blob_plain;f=extras/arc....
raymyers
|
cached about 17 hours ago
"extras/arc.el" on the git. We have Eric and Nathan to thank.
|
|
cached 9 days ago
|
|
cached 2 days ago
I have this friend, really sharp guy.
When we were sophmores he was learning Lisp, which was greek to me. ("What the heck is a lambda?!") Two years later, Lisp was my favorite language. By then, he was learning Haskell, which I could barely stand to look at. ("What the heck is a comprehension?!") Today, I love Haskell too. Why am I telling you all this? Because that guy is into Factor now, though it's still total gibberish to me. |
|
cached 1 day ago
|
|
cached 1 day ago
Perhaps modules should be valid containers. Thus instead of introducing a new syntax foo@a, we can use (foo 'a) and foo!a using sugar already in place. (I realize I am not the first person to say that.) I also would not like having to use mdef and m= within a module. Ideally, I should just use def, mac, and = as normal and export the symbols I want visible from outside.
This could all be implemented as an optional library, except for those pesky macros. And of course, we do need a module system with adequate macro support.
|
|
cached 1 day ago
Minimizing the number axioms is good. Minimize the number of convenience macros is a different proposition. Most conditionals and closures don't need anaphora, so when I see the plain if or fn I know not there's nothing funny going on. The anaphoric versions tell me I need to look for the it/self references before I'll understand what I'm reading.
Other things we shouldn't do include eliminating let in favour of the more general with, and then eliminating with in favour of the more general withs. Of course, (withs (a (foo) b (bar a) c (baz b)) ... ) is really just:
So we could lose withs too...
|
|
cached 22 days ago
|
|
cached 4 days ago
Ask and ye shall receive.
http://ray.codezen.org/wiki/doku.php?id=binary-search-tree
|
|
cached 4 days ago
Actually yes, in Haskell it is the same. Lazy evaluation means you could take the 4th element of a map over an infinite list. For example: "map (*2) [1..] !! 4"
|
|
cached 12 days ago
Since Scheme and CL are both specifications, it would be more meaningful to ask "Is MzScheme slower than SBCL?", for instance.
|
