func Scanf(a *string) {
    reader := bufio.NewReader(os.Stdin)
	data, _, _ := reader.ReadLine()
	*a = string(data)
}

0 comments

No comments so far...