How to get an \"E\" output rather than 69?
package main import \"fmt\" func main() { fmt.Print(\"HELLO\"[1]) }
Does Golang have funct
Try this to get the charecters by their index
package main import ( "fmt" "strings" ) func main() { str := strings.Split("HELLO","") fmt.Print(str[1]) }