You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
;; Add two numbers together;;;; @type {procedure};; @param {number} a First number to add;; @param {number} b Second number to add;; @returns {number} Result of adding numbers
(defineadd (lambda (a b) (+ a b)))
or
(defineadd;; Add two numbers together;;;; @type {procedure};; @param {number} a First number to add;; @param {number} b Second number to add;; @returns {number} Result of adding numbers
(lambda (a b) (+ a b)))
or
(defineadd
"
Add two numbers together
@type {procedure}
@param {number} a First number to add
@param {number} b Second number to add
@returns {number} Result of adding numbers
"
(lambda (a b) (+ a b)))
Questions
First class doc comments? (doc sum) ==> "Add two numbers...
The text was updated successfully, but these errors were encountered:
Syntax
or
or
Questions
(doc sum)
==>"Add two numbers...
The text was updated successfully, but these errors were encountered: