tsk-77: Print version of the software (#86)

* tsk-77: Added code to print version

* tsk-77: Removed print statement

* tsk-77: Code formatting

* tsk-77: Version bump

* tsk-77: Updated help
This commit was merged in pull request #86.
This commit is contained in:
KD
2025-10-22 21:40:12 -04:00
committed by GitHub
parent 9328f3d3da
commit 2188c2b746
6 changed files with 30 additions and 15 deletions
+6
View File
@@ -0,0 +1,6 @@
pub fn print_version() {
let name = env!("CARGO_PKG_NAME");
let version = env!("CARGO_PKG_VERSION");
println!("{name:?} {version:?}");
}