mirror of
https://github.com/sharkdp/bat.git
synced 2025-01-12 16:48:18 +01:00
13 lines
288 B
Rust
13 lines
288 B
Rust
/// A simple program that prints its own source code using the bat library
|
|
use bat::PrettyPrinter;
|
|
use std::ffi::OsStr;
|
|
|
|
fn main() {
|
|
let path_to_this_file = OsStr::new(file!());
|
|
|
|
PrettyPrinter::new()
|
|
.file(path_to_this_file)
|
|
.run()
|
|
.expect("no errors");
|
|
}
|