6 lines
102 B
Rust
6 lines
102 B
Rust
extern crate time;
|
|
|
|
pub fn current_time() -> f64 {
|
|
(time::precise_time_ns() / 1_000_000) as f64
|
|
}
|