go build

Jmnote (토론 | 기여)님의 2024년 7월 3일 (수) 16:13 판 (→‎참고)

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 }}