1 2 3 4 5 6 7
func int main() { int[] arr := new int[5]; arr[0] = 97; arr[1] = 98; putc(char(arr[0])); return 0; }