feat: First operational instance with just add

This commit is contained in:
Glen Whitney 2022-07-18 17:08:49 -07:00
parent cb016474ec
commit c5384e0ee7
6 changed files with 123 additions and 0 deletions

3
number/add.mjs Normal file
View file

@ -0,0 +1,3 @@
export const add = {
'...number': [[], addends => addends.reduce((x,y) => x+y, 0)],
}