"Golang 리눅스인지 확인"의 두 판 사이의 차이

(새 문서: ==개요== ;Golang 리눅스인지 확인 <syntaxhighlight lang='go' run> package main import ( "fmt" "runtime" ) func main() { var isLinux bool = runtime.GOOS == "linux" fmt.P...)
 
잔글 (봇: Go 패키지 runtime을(를) Go runtime 패키지(으)로 분류 대체함)
 
22번째 줄: 22번째 줄:
* https://golangbyexample.com/detect-os-golang/
* https://golangbyexample.com/detect-os-golang/


[[분류: Go 패키지 runtime]]
[[분류:Go runtime 패키지]]
[[분류: OS]]
[[분류:OS]]

2023년 5월 27일 (토) 20:37 기준 최신판

1 개요[ | ]

Golang 리눅스인지 확인
package main

import (
	"fmt"
	"runtime"
)

func main() {
	var isLinux bool = runtime.GOOS == "linux"
	fmt.Println(isLinux)
}

2 같이 보기[ | ]

3 참고[ | ]

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