1 2 3 4 5 6 7 8 9 10 11 12 13 14
use oxiplate_derive::Oxiplate; #[derive(Oxiplate)] #[oxiplate_inline(html: format!("oops"))] struct Inline; #[derive(Oxiplate)] #[oxiplate = format!("oops")] struct External; fn main() { print!("{}", Inline); print!("{}", External); }