6 lines
84 B
Rust
6 lines
84 B
Rust
use std::include_str;
|
|
|
|
fn main() {
|
|
println!("{}", include_str!("graph.svg"));
|
|
}
|