mirror of
https://github.com/sharkdp/bat.git
synced 2025-03-14 22:58:23 +00:00
10 lines
215 B
Rust
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");
|
|
}
|