5 lines
114 B
Rust
5 lines
114 B
Rust
|
use cogs_parser::parse_cog;
|
||
|
|
||
|
fn main() {
|
||
|
println!("{:#?}", parse_cog("{println!(\"Hello\")}\n<h1>hi</h1>"));
|
||
|
}
|