首页 AI前沿 Web开发 机器学习 深度学习 Go编程 Python编程 网络技术 区块链 时间序列 闲情逸致 我的网站
摘要: Go by Example: 值 import "fmt" func main() { fmt.Println("go" + "lang") fmt.Println("1+1 =", 1+1) fmt.Println("7.0/3.0 =", 7.0/3.0) fmt.Println(true && 阅读全文
posted @ 2025-09-14 11:23 gosamuel 阅读(12) 评论(0) 推荐(0)
摘要: What is Go? --Go is a cross-platform, open source programming language --Go can be used to create high-performance applications --Go is a fast, static 阅读全文
posted @ 2025-09-14 11:20 gosamuel 阅读(10) 评论(0) 推荐(0)
摘要: hello world package main import "fmt" func main() { fmt.Println("hello world") } 运行: $ go run hello-world.go hello world $ go build hello-world.go $ l 阅读全文
posted @ 2025-09-14 11:04 gosamuel 阅读(9) 评论(0) 推荐(0)
© 2025 Woloveai | 版权所有 如有侵权,请联系删除。