bat/examples/simple.rs

10 lines
215 B
Rust
Raw Normal View History

2020-03-21 21:45:03 +01:00
/// A simple program that prints its own source code using the bat library
use bat::PrettyPrinter;
2019-10-20 21:53:34 +02:00
fn main() {
2020-04-21 21:29:47 +02:00
PrettyPrinter::new()
2020-04-22 21:21:47 +02:00
.input_file(file!())
2020-04-22 20:33:19 +02:00
.print()
2020-04-21 21:29:47 +02:00
.expect("no errors");
2019-10-20 21:53:34 +02:00
}