From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789101112131415 #include "spvm_native.h"int32_t SPVM__MyMathNative__spvm_sum(SPVM_ENV* env, SPVM_VALUE* stack) { int32_t loop_count = stack[0].ival; int32_t total = 0; for (int32_t i = 0; i < loop_count; i++) { total += i; } stack[0].ival = total; return 0;}
#include "spvm_native.h"
int32_t SPVM__MyMathNative__spvm_sum(SPVM_ENV* env, SPVM_VALUE* stack) {
int32_t loop_count = stack[0].ival;
int32_t total = 0;
for
(int32_t i = 0; i < loop_count; i++) {
total += i;
}
stack[0].ival = total;
return
0;