Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created October 2, 2019 16:29
Show Gist options
  • Select an option

  • Save 100daysofdevops/b4f2182678a89e865274714da9429211 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/b4f2182678a89e865274714da9429211 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
x := "hello world"
x[3] = "P"
fmt.Printf("%v %T \n",x , x)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment