Spyke

Replies

rust

Comment on

Why is Rust so bare-bones?

Reply in thread

@cx40 @kornel using a macro ensure the format string and the values printed are typed correctly at compile time. It also ensure that most of the parsing is done at compile time and just the bare minimum is done at runtime. It's a safe and fast way to solve this issue.

You reached the end