You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bat/examples/simple.rs

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()
4 years ago
.input_file(file!())
.print()
.expect("no errors");
}