SICP Exercise 4.21 ; The evaluation proceeds as follows ((lambda (n) ((lambda (fact) (fact fact n)) (lambda (ft k) (if (= k 1) 1 (* k (ft ft (- k 1))))))) 10) ;--> ((lambda (fact) (fact fact 10)) (… more →
Weiqun Zhang's BlogBernhard wrote 14 hours ago: Tim Lopez published an elegant and tiny LISP interpreter for Python on his blog. Inspired by Norvig … more →
Weiqun wrote 3 days ago: SICP Exercise 4.21 ; The evaluation proceeds as follows ((lambda (n) ((lambda (fact) (fact fact n)) … more →
Weiqun wrote 3 days ago: SICP Exercise 4.20 (define (eval exp env) ; ...... ((letrec? exp) (eval (letrec->let exp) env)) ; … more →
Myles wrote 5 days ago: “The Vengeance Formulation” November 23rd, 2009 Last week, the show chose to split its s … more →
grault wrote 1 week ago: A good interview question: what is the value of the following form? CL-USER> (mapcar #'funcall (l … more →
Will Fitzgerald wrote 1 week ago: For biomedical devices, Software/Firmware Developer – Lisp (Contract to Hire). … more →
Ace wrote 1 week ago: I got this idea from Belle de Jour’s blog. It seemed cool enough, so yeah. The meme evolves in … more →
Weiqun wrote 2 weeks ago: SICP Exercise 4.19 I read the footnote of this exercise before I thought about this carefully. So I … more →
Weiqun wrote 2 weeks ago: SICP Exercise 4.18 Using the alternative strategy in this exercise for scanning out definitions, the … more →
Weiqun wrote 2 weeks ago: SICP Exercise 4.17 There is an extra frame in the transformed program because let will be converted … more →
goldmanalpha wrote 2 weeks ago: There are a lot of people @Lab who know things like Erlang, Haskell, Python, R, etc., etc., etc. I … more →
halmonster wrote 2 weeks ago: Qualys, Inc. is looking for a Policy Compliance Engineer who can research and write new capabilities … more →
Weiqun wrote 2 weeks ago: SICP Exercise 4.16 (define (lookup-variable-value var env) (define (env-loop env) (define (scan vars … more →
Weiqun wrote 2 weeks ago: SICP Exercise 4.15 The outcome of (try try) depends upon the result of (halts? try try). If (halts? … more →
grault wrote 2 weeks ago: Based on the net present value term, in case of regular $R incomes and rate as discount rate: years … more →
Weiqun wrote 3 weeks ago: SICP Exercise 4.14 The map procedure takes another procedure (say foo) and lists as its arguments. I … more →
fenilseta wrote 3 weeks ago: By Subhash K Jha (MUMBAI MIRROR; November 04, 2009) Paa W e’ve discovered the secret to how A … more →
Weiqun wrote 3 weeks ago: SICP Exercise 4.13 I think make-unbound! should remove only the binding in the first frame. Otherwis … more →
Weiqun wrote 3 weeks ago: SICP Exercise 4.12 (define (env-loop var null-action eq-action env) (define (scan vars vals) (cond ( … more →