Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Our previous usage of `concat!()` prevents `format_args!` from capturing variables from the surrounding scope. Implementing `println!` using a nested `format_args!` removes this limitation allowing us to do the following: ```rust let x = 3; println!("{x}"); ``` Signed-off-by: Klimenty Tsoutsman <[email protected]>
- Loading branch information