Get Character at Index

Examples Filter
package main

import (
	"fmt"
)

func main() {
	fmt.Println("Char:", "hello"[1])
}