Just like how Rust offers todo!()
or how Ocaml has let func = "Failure "Unimplemented""
is there a way to write a function in zig that doesn’t have the body implemented and doesn’t raise any warnings and errors after being compiled?
For now I just write it with a print for e.g.
pub fn do_something(self: *MyType) void {
std.debug.print("TODO %d", self.field);
}