This website requires JavaScript.
Explore
Help
Register
Sign In
kdx
/
IronGOLEM
Watch
1
Star
0
Fork
0
You've already forked IronGOLEM
forked from
starnakin/IronGOLEM
Code
Pull Requests
Activity
c6728cfe49
IronGOLEM
/
src
/
strlen.🗿
10 lines
86 B
Plaintext
Raw
Normal View
History
Unescape
Escape
add: strlen, putchar, putstr
2023-06-12 13:29:54 -04:00
strlen(str) {
use postfix and variable initialisation
2023-06-18 10:15:44 -04:00
local i = 0;
add: strlen, putchar, putstr
2023-06-12 13:29:54 -04:00
loop {
if ([str + i] == 0)
return (i);
use postfix and variable initialisation
2023-06-18 10:15:44 -04:00
i++;
add: strlen, putchar, putstr
2023-06-12 13:29:54 -04:00
}
}
Copy Permalink