summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2022-07-05 13:56:35 +0300
committerYuval Adam <_@yuv.al>2022-07-05 13:56:35 +0300
commiteda18b18bd3b1ec8a0bb14e24ec2a8c7a79c3980 (patch)
tree480e7f5891348b10426a68fda0b730b6b9805f24
parent03161457e8c0f0ef657982b5796802f61cc78e31 (diff)
Remove hello print
-rw-r--r--src/main.rs1
1 files changed, 0 insertions, 1 deletions
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.