Below is the code for reading the input from console
var message string
fmt.Scanln(&message)
But I wanted to try same with rune, which is unicode of byte
var input []rune
fmt.Scanln(input)
As per my C/C++ knowledge, where an array's reference can be passed through its name , I thought it would work in case of rune
But surprisingly the program passes Scanln in case of rune without even taking console input
What is that am doing wrong? Or it cannot be done ? Or it requires type casting to string ?