Brother even go language training Course System Design framework includes the basic language of the blockchain go language, blockchain backend technology system, blockchain public chain, blockchain distributed application development and other content, as well as to the final interview guidance and project combat. The course was carefully built by Tsinghua University's Microsoft Google Teacher team, which lasted half a year and developed together.
Brother even go language training Tsinghua Yin Cheng take you to the actual go case (+) Go value
Go value
Go has a number of data types, including string type, Integer, float, Boolean, and so on, here are some basic examples.
Packagemain
Import "FMT"
Funcmain () {
Strings can be connected using "+"
Fmt. Println ("Go" + "lang")
Integral and floating-point types
Fmt. Println ("1+1=", +)
Fmt. Println ("7.0/3.0=", 7.0/3.0)
Several operators of Boolean type
Fmt. Println (True&&false)
Fmt. Println (true| | False
Fmt. Println (!true)
}
The output result is
Golang
1+1=2
7.0/3.0=2.3333333333333335
False
True
False