go build

Jmnote (토론 | 기여)님의 2021년 9월 17일 (금) 10:54 판 (→‎같이 보기)

1 개요

go build
user01@localhost:~/temp$ ls
hello.go
user01@localhost:~/temp$ cat hello-world.go
package main
import "fmt"
func main() {
    fmt.Println("hello world")
}
user01@localhost:~/temp$ go build hello.go
user01@localhost:~/temp$ ls
hello  hello.go
user01@localhost:~/temp$ ./hello
hello world

2 같이 보기

3 참고

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