SICP Ex. 1.17 - "fast-multiply" slower than "multiply"?...
Read MoreSICP Exercise 1.16 - Is my solution correct?...
Read MoreThe object #f or #t is not applicable...
Read Moreelement-of-set-p: Symbol’s value as variable is void: false...
Read MoreIs my implementation of SICP Exercise 1.3 going in the right direction?...
Read MoreCapturing variables from surrounding abstractions in sicp macros...
Read MoreEager evaluation/applicative order and lazy evaluation/normal order...
Read MoreWhy can't I use car inside this let statement in Scheme?...
Read MoreSICP 3.6 - Rand procedure and local state variables...
Read MoreScheme: problem about display when using `delay` expression...
Read MoreWhat is the equivalent of the rest procedure in SICP in MIT Scheme 9.2?...
Read MorePros and cons of MIT Scheme and DrScheme for studying SICP...
Read MoreWhat is the best Scheme implementation for working through SICP?...
Read MoreHow to implement put & get procedure in scheme?...
Read MoreAdding primitives in metacircular evaluator...
Read MoreTaking the 'and' of a list by folding in Scheme...
Read MoreHow to run Picture language examples of SICP /scheme in repl?...
Read MoreWith applicative order, what order are the arguments evaluated? Left to right or right to left?...
Read MoreDefine a primitive apply with purely scheme procedures...
Read Moreapply, apply-primitive-procedure and apply-in-underlying-scheme...
Read More(eval '(* a b)) return a final result rather than an intermediate (* 2 3)...
Read Morescheme which support set-car! and set-cdr! in sicp...
Read More(caadr exp) in assignment-variable...
Read MoreAssistance to portray the tree or box-pointer strucure...
Read Morefixed point to find root of a²+a³=392 but report OverflowError...
Read MoreRiemann integral formula to compute high-order function...
Read MoreFind root with Newton's method...
Read MoreThe inner `try` interation in `fixed-point`...
Read More(let (next (f guess)) vs (let ((next (f guess)))...
Read More