For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
How to index characters in a Golang string?
-
How to get an "E" output rather than 69?
package main
import "fmt"
func main() {
fmt.Print("HELLO"[1])
}
Does Golang have function to convert a char to byte and vice versa?