4 lines
82 B
Common Lisp
4 lines
82 B
Common Lisp
> (define (my-multiply a b) (* a b))
|
|
(lambda (a b) (* a b))
|
|
> (my-multiply 2 3)
|
|
6
|