英文:
What does undefined : fmt.Println(build) means in GOlang? while using "fmt.Println(len("hello world")"
问题
你好!根据你的要求,我将为你翻译以下内容:
我是Go语言和编程的新手。
有人可以解释一下这个错误是什么意思,以及我该如何解决它吗?
英文:
I am new to go language and programming.
Can anyone explain what does the error means and how can I tackle it?
答案1
得分: 10
使用fmt.Println
而不是fmt.PrintLn
。将字母L改为小写。
英文:
Use fmt.Println
instead of fmt.PrintLn
. Make letter L lowercase.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论