1
0
mirror of https://github.com/orhun/kmon synced 2024-07-03 08:08:59 +00:00

feat: Create version variable and print it with name

This commit is contained in:
orhun 2019-11-05 09:58:07 +03:00
parent d74995c5df
commit b428dca876
No known key found for this signature in database
GPG Key ID: B928720AEC532117

View File

@ -1,3 +1,5 @@
const VERSION:&str = "0.1.0";
fn main() {
println!("kmon v0.1.0");
println!("kmon v{}", VERSION);
}