6 lines
55 B
Rust
6 lines
55 B
Rust
|
use quote::quote;
|
||
|
|
||
|
fn main() {
|
||
|
quote!(#(a b),*);
|
||
|
}
|