RosettaCodeData/Task/Function-definition/NewLISP/function-definition.newlisp

5 lines
82 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
> (define (my-multiply a b) (* a b))
(lambda (a b) (* a b))
> (my-multiply 2 3)
6