// Filename: HelloWorld.go
//
// Execute: go run HelloWorld.go
// or
// Compile: go build HelloWorld.go
// Execute: ./HelloWorld
package main
import "fmt"
func main() {
fmt.Printf("Hello, world!\n")
}
'프로그래밍 > Go' 카테고리의 다른 글
조립제법(Horner의 방법) 예제 with Go (0) | 2012.06.16 |
---|---|
80컬럼 컨솔에 19단표 출력하기 예제 with Go (0) | 2012.06.16 |
(최대공약수 구하기) while... 반복문 예제 with Go (0) | 2012.06.15 |
if...else... 조건문 사용 예제 with Go (0) | 2012.06.15 |
맹령행 인자 처리 예제 with Go (0) | 2012.06.15 |