1
0
mirror of https://github.com/jht5945/rust_util.git synced 2025-12-27 15:40:03 +08:00

feat: add example

This commit is contained in:
2020-09-20 22:29:58 +08:00
parent 289fe68e61
commit 90ffe7c7d9
2 changed files with 11 additions and 0 deletions

6
examples/log.rs Normal file
View File

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