5 lines
49 B
Common Lisp
5 lines
49 B
Common Lisp
|
|
(defun multiply (a b)
|
||
|
|
(* a b))
|
||
|
|
|
||
|
|
(multiply 2 3)
|