Introduction 简介

This is a reference manual for the Go programming language. For more information and other documents, see golang.org.

这是Go语言的参考手册.获取更多信息和其他文档请参考golang.org

Go is a general-purpose language designed with systems programming in mind. It is strongly typed and garbage-collected and has explicit support for concurrent programming. Programs are constructed from packages, whose properties allow efficient management of dependencies. The existing implementations use a traditional compile/link model to generate executable binaries.

Go意在设计为一门通用型系统编程语言.它是强类型语言、有垃圾回收机制并且很好的支持并发编程.程序由各种包构建,这些包的特性能有效的管理依赖关系.现有实现是使用传统的编译/链接 模型来产生可执行二进制文件.

The grammar is compact and regular, allowing for easy analysis by automatic tools such as integrated development environments.

它的语法是简洁而通用的,能够很容易让自动化工具进行分析,例如:集成开发环境.