kazimirmajorinc.blogspot.com
Kazimir Majorinc's Blog (currently not in use): December 2010
http://kazimirmajorinc.blogspot.com/2010_12_01_archive.html
Kazimir Majorinc's Blog (currently not in use). Kazimir Majorinc - web site. Kazimir Majorinc - Lisp book. Expansion of Free Variables. The function "expand" is a Newlisp version of mathematical operation. Of the substitution. It is very useful function. For example,. Expand '(lambda(x y)(print x) 'x). Lambda (new-variable y) (print new-variable). Newlisp "expands" all occurences of the symbol x with symbol. However, it is not always convenient to apply substitution on. X (* 2 x) (let( x 5) (* x x) ).
kazimirmajorinc.blogspot.com
Kazimir Majorinc's Blog (currently not in use): September 2010
http://kazimirmajorinc.blogspot.com/2010_09_01_archive.html
Kazimir Majorinc's Blog (currently not in use). Kazimir Majorinc - web site. Kazimir Majorinc - Lisp book. Change of The Blog Name. I changed the name of the blog from "Programming notes" to "Lisp notes." The reason is practical - more specific information for search engines, so potential readers can find it easier. Links on this post. McCarthy-60 Lisp in McCarthy-60 Lisp in . in McCarthy-60 Lisp. In this article, I'll show how John McCarthy. S Lisp can be interpreted. And so on, n times. That definition...
kazimirmajorinc.blogspot.com
Kazimir Majorinc's Blog (currently not in use): January 2011
http://kazimirmajorinc.blogspot.com/2011_01_01_archive.html
Kazimir Majorinc's Blog (currently not in use). Kazimir Majorinc - web site. Kazimir Majorinc - Lisp book. Some differences between lambda-calculus and Lisp (2). This is the second part of previous post. 4 Evaluation in Lisp vs. Reduction to normal form in lambda-calculus. As noted in previous post, in Lisp, evaluation of the function. Application is defined recursively:. 1 evaluation of the function arguments is performed. 2 resulting values are assigned to the parameters of. 41 Order of reductions in.
kazimirmajorinc.blogspot.com
Kazimir Majorinc's Blog (currently not in use): June 2010
http://kazimirmajorinc.blogspot.com/2010_06_01_archive.html
Kazimir Majorinc's Blog (currently not in use). Kazimir Majorinc - web site. Kazimir Majorinc - Lisp book. Small But Robust Bug in Gabriel and Steele's "Evolution of Lisp.". Although not nearly as intriguing as the bugs in early definitions of EVAL. This bug is still interesting example of vitality and robustness: it is typical specimen, found on quite visible place, yet it passed unnoticed by two authors and few reviewers. Instead, you're directed to MIT AI "memos" AIM-452. Links on this post.
kazimirmajorinc.blogspot.com
Kazimir Majorinc's Blog (currently not in use): Spring evening in my hacklab
http://kazimirmajorinc.blogspot.com/2013/05/spring-evening-in-my-hacklab.html
Kazimir Majorinc's Blog (currently not in use). Kazimir Majorinc - web site. Kazimir Majorinc - Lisp book. Spring evening in my hacklab. Veljko, Lovro and Psy Shree Krishna. 8 May 2013 at 20:14. Hi Kaz. Long time no chat. Just wanted to say hi again. Google Reader is quitting, so i was going thru my blogs. Definitely going to keep reading yours. Hope alls well. 8 May 2013 at 20:27. Thank you, Xah, everything is OK. I see youre still in Emacs. Subscribe to: Post Comments (Atom). My main site is.
kazimirmajorinc.blogspot.com
Kazimir Majorinc's Blog (currently not in use): October 2010
http://kazimirmajorinc.blogspot.com/2010_10_01_archive.html
Kazimir Majorinc's Blog (currently not in use). Kazimir Majorinc - web site. Kazimir Majorinc - Lisp book. On Pitman's "Special Forms in Lisp.". Moved to kazimirmajorinc.com. Links on this post. Subscribe to: Posts (Atom). On Pitmans Special Forms in Lisp. My main site is. You can be interested in http:/ lispbook.com. Dragonfly - a Newlisp Web Famework. Lo scripting come non . Newlisp Fan Club - forum. Introduction to Newlisp (book in html). Introduction to Newlisp (book, pdf). Interview with Lutz Mueller.
kazimirmajorinc.blogspot.com
Kazimir Majorinc's Blog (currently not in use): August 2010
http://kazimirmajorinc.blogspot.com/2010_08_01_archive.html
Kazimir Majorinc's Blog (currently not in use). Kazimir Majorinc - web site. Kazimir Majorinc - Lisp book. A Few Photographies from "Nothing will happen", Split 2010. I just returned from " Nothing will happen. Discussing his recent work on Dylan type system. Talking about Hygienic Fexprs. S basic introduction to Enlive, a HTML transformation / templating library for Clojure. From Chaos Computer Club. From Belgrade and I. My roommates, Nikola Plejić. Links on this post. Care was required, because the fun...
kazimirmajorinc.blogspot.com
Kazimir Majorinc's Blog (currently not in use): July 2010
http://kazimirmajorinc.blogspot.com/2010_07_01_archive.html
Kazimir Majorinc's Blog (currently not in use). Kazimir Majorinc - web site. Kazimir Majorinc - Lisp book. The Cover of "Byte Magazine" 1979 Lisp Issue. Look what just popped from some old stack:. It appears that extraterrestrials used LAMDA. Links on this post. Nothing Will Happen", Split, Croatia, 19-22 August 2010. Split is beautiful, ancient city on Mediterranean, Adriatic coast. If you're interested, you're invited to join. Links on this post. Sin cos 0.5) = (sin (cos 0.5). And that it is better to ...
kazimirmajorinc.blogspot.com
Kazimir Majorinc's Blog (currently not in use): February 2011
http://kazimirmajorinc.blogspot.com/2011_02_01_archive.html
Kazimir Majorinc's Blog (currently not in use). Kazimir Majorinc - web site. Kazimir Majorinc - Lisp book. Lambda Calculus Meta-variables Supported in my Newlisp Library. Lambda calculus is very small and still "Turing complete" language. However, because of its simplicity and small size, it is very hard to write real programs - even harder than in assembly language. Most of the materials demonstrating programming in lambda calculus use meta-variables. For instance, TRUE is defined as. X ( y . x) ).