feat: add colored_msg

This commit is contained in:
2020-07-19 17:37:00 +08:00
parent 39116a062d
commit aa145d6912
2 changed files with 12 additions and 0 deletions

9
colored_msg/Cargo.toml Normal file
View File

@@ -0,0 +1,9 @@
[package]
name = "colored_msg"
version = "0.1.0"
authors = ["Hatter Jiang <jht5945@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
colored_msg/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}