1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-11 01:04:07 +02:00
This commit is contained in:
Justin Lin
2020-02-22 09:59:23 +08:00
parent fb7eab6a31
commit d2e2c7867a

View File

@@ -0,0 +1,2 @@
function _sum(lt, leng, i = 0) =
i == leng ? [0, 0] : lt[i] + _sum(lt, leng, i + 1);