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 c0a9b60910563c867ca841bea9e8d0f3b9c68c72..40fc05183e135cc22a7f7d58efceb68af62e515f 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))