From 8ea3a73e495a6fbc42c9e8e96966329b08a6c070 Mon Sep 17 00:00:00 2001 From: Andrej Rasevic <andrej@rasevicengineering.com> Date: Thu, 13 Jan 2022 07:35:53 -0500 Subject: [PATCH] minor update --- codeExamples/07_input_output/standard_io/example_05/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeExamples/07_input_output/standard_io/example_05/main.go b/codeExamples/07_input_output/standard_io/example_05/main.go index c0a9b60..40fc051 100644 --- a/codeExamples/07_input_output/standard_io/example_05/main.go +++ b/codeExamples/07_input_output/standard_io/example_05/main.go @@ -9,7 +9,7 @@ import ( func main() { writer := bufio.NewWriter(os.Stdout) - msg := "Save the world with Go!!!" + msg := "Save the world with Go!!!\n" for _, letter := range msg { time.Sleep(time.Millisecond*300) writer.WriteByte(byte(letter)) -- GitLab