IronGOLEM/src/strlen.🗿

10 lines
86 B
Plaintext

strlen(str) {
local i = 0;
loop {
if ([str + i] == 0)
return (i);
i++;
}
}