We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1aa7612 + 0eefe46 commit a994e2fCopy full SHA for a994e2f
1 file changed
tutorials/learn-golang.org/en/The fmt module.md
@@ -77,7 +77,7 @@ func main() {
77
78
Expected Output
79
---------------
80
-Lord of the Rings is Leonardo's favourite movie
+Tenet is Nolan's favourite movie
81
82
Solution
83
--------
@@ -86,8 +86,8 @@ package main
86
import "fmt"
87
88
func main() {
89
- name := "Leonardo"
90
- movie := "Lord of the Rings"
+ name := "Nolan"
+ movie := "Tenet"
91
92
fmt.Printf("%s is %s's favourite movie", movie, name)
93
}
0 commit comments