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

5 lines
82 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
> (define (my-multiply a b) (* a b))
(lambda (a b) (* a b))
> (my-multiply 2 3)
6