RosettaCodeData/Task/Comments/Common-Lisp/comments-2.lisp

8 lines
149 B
Common Lisp
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
(defun bar (n)
"Add 3 to the argument."
(+ n 3))
(defclass button (widget)
(label action)
(:documentation "This is a push-button widget."))