Unified.golden 6.1 KB

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