본문 바로가기
Programing/Go

[GoLang] "hello world" 출력

by 멍멍돌이야 2024. 6. 8.
반응형

 

첫 번째 프로그램은 고전적인 "hello world"를 출력합니다. 메시지. 전체 소스 코드는 다음과 같습니다.

package main

import "fmt"

func main() {
    fmt.Println("hello world")
}

 

728x90
반응형

댓글