1
0
mirror of https://github.com/sharkdp/bat synced 2026-07-16 15:53:18 +00:00
Files
sharkdp--bat/examples/simple.rs
T
2020-04-22 23:55:28 +02:00

10 lines
215 B
Rust

/// A simple program that prints its own source code using the bat library
use bat::PrettyPrinter;
fn main() {
PrettyPrinter::new()
.input_file(file!())
.print()
.expect("no errors");
}