1 2 3 4 5 6 7 8 9 10 11 12
//!
//! Crate for general purposes.
pub mod time_tools {
use std::time::SystemTime;
pub fn get_current_time_seconds() {
let now = SystemTime::now();
println!("The time now is: {:?}", now);
}
}
1 2 3 4 5 6 7 8 9 10 11 12
//!
//! Crate for general purposes.
pub mod time_tools {
use std::time::SystemTime;
pub fn get_current_time_seconds() {
let now = SystemTime::now();
println!("The time now is: {:?}", now);
}
}