Files
speckle-excel/src/functions/functions.js
T
Connor Ivy a7425c400b it builds!
2022-11-04 19:06:53 -05:00

12 lines
239 B
JavaScript

/**
* Add two numbers
* @customfunction
* @param {number} first First number
* @param {number} second Second number
* @returns {number} The sum of the two numbers.
*/
function add(first, second) {
return first + second
}
add(1, 2)