Content.golden 200 B

12345678910111213
  1. --- main.go
  2. +++ main.go
  3. @@ -3,7 +3,8 @@
  4. import (
  5. "fmt"
  6. )
  7. func main() {
  8. - fmt.Println("Hello, World!")
  9. + content := "Hello, World!"
  10. + fmt.Println(content)
  11. }
  12. \ No newline at end of file