I have this code right here
pub fn parse(str: []const u8) usize {
_ = str;
for (0..20) |_| {
return 1;
}
}
calling it gives an error
src/uci.zig:8:31: error: function with non-void return type 'usiz
e' implicitly returns
pub fn parse(str: []const u8) usize {
^~~~~
src/uci.zig:13:1: note: control flow reaches end of body here
}```