Many C/C++-people will wonder why in Rust macros are used for such simple tasks as printing and building a vector, while macros in C/C++ are mostly used for complex/advanced stuff.
Something like in Rust this is a macro because ... or you could use the following Rust functions directly, but calling the macro is easier because ...
Many C/C++-people will wonder why in Rust macros are used for such simple tasks as printing and building a vector, while macros in C/C++ are mostly used for complex/advanced stuff.
Something like
in Rust this is a macro because ...oryou could use the following Rust functions directly, but calling the macro is easier because ...