macro format_args($fmt, $args...) { ... }

Transforms a format string and arguments into a sequence of chunks.

This macro is implemented in the compiler, and is used as a foundation for other formatting macros, such as format and println. You probably want to use one of those formatting macros instead.

Examples