Hacker News new | ask | show | jobs
by lispm 5068 days ago
unfortunately his knowledge of basic Lisp is relatively small and his Lisp style is also quite bad.

He does imperative programming in Lisp:

   (let (a b result)
     (setq a 1)
     (setq b 2)
     (setq result (+ a b))
     result)
code which is more than four lines is often from different sources.