The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#include "bind_clib.h"
int32_t bind_clib_sum(int32_t* nums, int32_t length) {
int32_t total = 0;
for (int32_t i = 0; i < length; i++) {
total += nums[i];
}
return total;
}