mirror of
https://github.com/sharkdp/bat
synced 2024-11-24 04:43:07 +00:00
9 lines
215 B
Rust
9 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");
|
|
}
|