"Go run"의 두 판 사이의 차이

(새 문서: ==개요== {{소문자}} ;go run <syntaxhighlight lang='console'> user01@localhost:~$ cat hello-world.go package main import "fmt" func main() { fmt.Println("hello world") } </sy...)
 
 
19번째 줄: 19번째 줄:
* [[go build]]
* [[go build]]
* [[Go 헬로우 월드]]
* [[Go 헬로우 월드]]
* [[Go 헬로우 월드 빌드·실행]]


==참고==
==참고==

2021년 9월 17일 (금) 10:57 기준 최신판

1 개요[ | ]

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

2 같이 보기[ | ]

3 참고[ | ]

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