WidthOf086.golden

 1Ā  …Ā   @@ -2,6 +2,7 @@                      Ā  …Ā                                        
 2Ā  2Ā                                        Ā  2Ā                                        
 3Ā  3Ā   import (                             Ā  3Ā   import (                             
 4Ā  4Ā       "fmt"                            Ā  4Ā       "fmt"                            
 5Ā   Ā                                        Ā  5Ā +     "strings"                        
 6Ā  5Ā   )                                    Ā  6Ā   )                                    
 7Ā  6Ā                                        Ā  7Ā                                        
 8Ā  7Ā   func main() {                        Ā  8Ā   func main() {                        
 9Ā  …Ā   @@ -9,5 +10,6 @@                     Ā  …Ā                                        
10Ā  9Ā   }                                    Ā 10Ā   }                                    
11Ā 10Ā                                        Ā 11Ā                                        
12Ā 11Ā   func getContent() string {           Ā 12Ā   func getContent() string {           
13Ā 12Ā -     return "Hello, world!"           Ā 13Ā +     content := strings.ToUpper("Hell…
14Ā   Ā                                        Ā 14Ā +     return content                   
15Ā 13Ā   }                                    Ā 15Ā   }