From eda18b18bd3b1ec8a0bb14e24ec2a8c7a79c3980 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Tue, 5 Jul 2022 13:56:35 +0300 Subject: Remove hello print --- src/main.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index b6e9f06..9424819 100644 --- a/src/main.rs +++ b/src/main.rs @@ -17,7 +17,6 @@ impl Future for Delay { fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<&'static str> { if Instant::now() >= self.when { - println!("Hello world"); Poll::Ready("done") } else { // Ignore this line for now. -- cgit v1.3.1