From 0bf936db989f5e28b7b20b406d6c5e2efbe7e8e6 Mon Sep 17 00:00:00 2001 From: ACvanWyk Date: Sat, 25 Feb 2023 19:39:56 +0200 Subject: [PATCH] Fixed modules --- exercises/modules/modules3.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/exercises/modules/modules3.rs b/exercises/modules/modules3.rs index 35e07990..0d0264c6 100644 --- a/exercises/modules/modules3.rs +++ b/exercises/modules/modules3.rs @@ -5,10 +5,8 @@ // from the std::time module. Bonus style points if you can do it with one line! // Execute `rustlings hint modules3` or use the `hint` watch subcommand for a hint. -// I AM NOT DONE - // TODO: Complete this use statement -use ??? +use std::time::{SystemTime, UNIX_EPOCH}; fn main() { match SystemTime::now().duration_since(UNIX_EPOCH) {