Stringifies an expression.
use std::stringify; assert_eq!(stringify!(1 + 2), "1 + 2"); Run this example
use std::stringify; assert_eq!(stringify!(1 + 2), "1 + 2");