How to get an \"E\" output rather than 69?
package main import \"fmt\" func main() { fmt.Print(\"HELLO\"[1]) }
Does Golang have funct
String characters are runes, so to print them, you have to turn them back into String.
fmt.Print(string("HELLO"[1]))