프로그래밍/Golang
1. 시작 Golang
techwold ted
2022. 10. 31. 21:38
모든 언어에 시작은 hello world 아니겠어요^^
go는 이렇게 찍는 군요~
package main
import "fmt"
func main() {
fmt.Println("Hello, world")
}