starting go by example

This commit is contained in:
2021-12-31 15:36:34 +01:00
parent bafba8a7b6
commit afe165089d
11 changed files with 340 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
package main
import "fmt"
func main() {
// var declares 1 or more variables
var a = "initial"
fmt.Println(a)
// here are multiple variables declared
var b, c int = 1, 2
fmt.Println(b, c)
// go infers the type of initialized variables
var d = true
fmt.Println(d)
// Variables declared without a corresponding initialization are zero-valued
var e int
fmt.Println(e)
// shorthand for declaring and initializing a variable
f := "apple"
fmt.Println(f)
}