From 01ac1e0a90114ff7e15ad7012e71ec505ef0d3e8 Mon Sep 17 00:00:00 2001 From: zontreck Date: Fri, 30 Aug 2024 23:17:05 -0700 Subject: [PATCH] Fix sleep missing verbosity --- dart/bin/sleep.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/dart/bin/sleep.dart b/dart/bin/sleep.dart index 68b7e0f..b4daad1 100644 --- a/dart/bin/sleep.dart +++ b/dart/bin/sleep.dart @@ -7,6 +7,7 @@ Future main(List args) async { while(seconds>=0) { await Future.delayed(Duration(seconds: 1)); + prnt("\rPlease Wait $seconds second(s)..."); seconds--; }