1
0
mirror of https://github.com/jht5945/rust_util.git synced 2025-12-27 07:30:05 +08:00
Files
rust_util/examples/log.rs
2020-09-20 22:29:58 +08:00

6 lines
118 B
Rust

#[macro_use] extern crate rust_util;
// cargo run --example log
fn main() {
information!("Hello {}", "world!");
}