Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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