1 Star 0 Fork 0

简约/govcl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 566 Bytes
一键复制 编辑 原始数据 按行查看 历史
package main
import (
"fmt"
. "github.com/ying32/govcl/vcl/rtl/version"
)
func main() {
fmt.Println("Major: ", OSVersion.Major)
fmt.Println("Minor: ", OSVersion.Minor)
fmt.Println("Name: ", OSVersion.Name)
fmt.Println("String: ", OSVersion.ToString())
switch OSVersion.Platform {
case PfWindows:
if OSVersion.CheckMajor(10) {
fmt.Println("当前为Windows10")
} else {
fmt.Println("当前不是Windows10")
}
case PfLinux:
fmt.Println("LIBC Version:", OSVersion.LibCVersionMajor, ", ", OSVersion.LibCVersionMinor)
case PfMacOS:
//
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/jianyue/govcl.git
git@gitee.com:jianyue/govcl.git
jianyue
govcl
govcl
v1.2.0

搜索帮助