miniblog.
← Back to all posts
Aug 27, 2018 at 18:15
Common Lisp has 'make-instance', analogous to the 'new' keyword in Java:
https://clhs.lisp.se/Body/f_mk_ins.htm
I suspect the longer name shows that OO is less used in CL than Java: CL supports standalone functions and other paradigms.
Related Posts
May 27, 2016 at 23:00
Is there a relationship between f-expressions and lazy execution? Traditional macros seem analogous to eager execution.