Go --- Based on the introduction

Go Language

Go Language Introduction

go---golang  2009年 开发 公司推出的编程语言
python  1989年  龟叔
java    1990年  现在被甲骨文收购了,

Go is still a strongly typed language, the language is different from the type of analytical compiled language

Parsing language: source code is first translated into an intermediate code and interpreted code executed by an interpreter

Compiled language: source code compiler generated machine language, and executed by a machine to execute the machine code directly

Go language features

Cross-platform compiled language

The syntax near the c language

Garbage collection mechanism

Support for object-oriented and process-oriented programming model

Applications

Service development, concurrency, distributed, service and other micro-direction

Go language project

docker

k8s

Block chain

Go Language Infrastructure

GOPATH work to include the bin, src, and three pkg

src: Source (include third-party and own projects)

bin: compiled executable program

pkg: the resulting object files at compile time

Go environment to build

Go to install an integrated environment (ide)

https://www.cnblogs.com/xiaoyuanqujing/articles/11676897.html

Go interpreter installation

推荐使用golang
https://www.cnblogs.com/xiaoyuanqujing/articles/11728029.html

Guess you like

Origin www.cnblogs.com/whkzm/p/12586565.html