diff options
| author | Yuval Adam <_@yuv.al> | 2022-07-05 13:56:35 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2022-07-05 13:56:35 +0300 |
| commit | eda18b18bd3b1ec8a0bb14e24ec2a8c7a79c3980 (patch) | |
| tree | 480e7f5891348b10426a68fda0b730b6b9805f24 /src | |
| parent | 03161457e8c0f0ef657982b5796802f61cc78e31 (diff) | |
Remove hello print
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 1 |
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. |
