Goland "a...:" appearing in fmt.Println()
Hello, just starting to learn Go. Started with a simple hello world in Goland. I see a strange "a...:" appearing in the fmt.Println only in IDE GUI. This string doesn't appear in the src helloworld.go file. What is that string "a...:"? How do I turn it off? Code runs fine. I am on a Mac Catalina, latest version of go and Goland.
请先登录再写评论。
Can someone from Jetbrains chime in please?
This is the name of parameter of Println function. Right click on it likely will help you. Also see https://stackoverflow.com/questions/42346480/how-to-disable-parameter-hints-in-intellij-idea/42346608#42346608
Thank you