fmt.Println arg list ends with redundant newline

Jmnote (토론 | 기여)님의 2023년 9월 8일 (금) 12:24 판 (새 문서: ==개요== {{소문자}} <syntaxhighlight lang='go'> fmt.Println("foo\n") </syntaxhighlight> ==실습== <syntaxhighlight lang='go'> package main import "fmt" func main() {...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

fmt.Println("foo\n")

2 실습

package main

import "fmt"

func main() {
        fmt.Println("Hello, 世界\n")
}
root@wsl:~/go/src/hello#
root@wsl:~/go/src/hello# go vet
# hello
./main.go:6:2: fmt.Println arg list ends with redundant newline

3 같이 보기

4 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}