fix: printf exercises

* Improvements to exercise solutions
* Fix grammar in exercise
This commit is contained in:
Paul Waldmann
2018-11-17 21:58:29 +08:00
committed by Inanc Gumus
parent d4a81f94e9
commit 9806e01284
6 changed files with 6 additions and 6 deletions

View File

@ -10,5 +10,5 @@ package main
import "fmt"
func main() {
fmt.Printf("My age is %d years old.\n", 30)
fmt.Printf("I'm %d years old.\n", 30)
}