Forgot your password?
typodupeerror

Comment Re:Lisp Syntax (Score 1) 255

Everything does not look the same. There are very common patterns that you will begin to spot almost immediately, like:

(defun func (args)
  code)
 
(let ((bindings
      bindings))
  code)
 
(do ((bindings
      bindings))
    (stop-form ret-form)
..code..)

And so on. As a lisp programmer these things will immediately register when you look at lisp source.

Slashdot Top Deals

Help! I'm trapped in a PDP 11/70!

Working...