Logo

Programming-Idioms

History of Idiom 3 > diff from v35 to v36

Edit summary for version 36 by foobar:
New Lisp implementation by user [foobar]

Version 35

2019-09-26, 14:44:29

Version 36

2019-09-26, 15:40:26

Idiom #3 Create a procedure

Like a function which doesn't return any value, thus has only side effects (e.g. Print to standard output)

Idiom #3 Create a procedure

Like a function which doesn't return any value, thus has only side effects (e.g. Print to standard output)

Code
(defun show (message)
  (format t "Hello: ~a" message)
  (values))