DaveKruglinsky

↗ HN profile [ 19.4 ms ] full profile
Karma
62
Created
August 1, 2009 (16y ago)
Submissions
0
  1. This is the best macro tutorial ever written (other PLT guys just seems to be uncapable of writting anything as clear as this gem). Thanks, Eli!

  2. I want to learn lisp from great master, so can you give to us most interesting pieces of Viaweb's source code?

  3. Hello, lispers! Is it posible to write macro (or something) in lisp, such that any 'call' which has shape like (caddaddr x) automatically expands into (car (cdr (cdr (car (cdr (cdr x)))))) Naturally, this should work…

  4. Hi guys, Does anybody know how to write program for finding solution for Klotski puzzles? (http://phil.freehackers.org/klotski/) Inspired by SICP, I'm trying to learn lisp and put in use some backtracking technique, but…