1 개요
- Go Println()
Go
Copy
package main
import "fmt"
func main() {
fmt.Println("hello" + "world")
fmt.Println("1+1 =", 1+1)
fmt.Println(true)
fmt.Println(false)
fmt.Println(nil)
}
Loading
2 같이 보기
3 참고
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.