Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package main
import "fmt"
func main() {
var age int = 25
height := 5.9
const language = "Go"
isBackend := true
fmt.Println("Age:", age)
fmt.Println("Height:", height)
fmt.Println("Language:", language)
fmt.Println("Backend:", isBackend)
}Coding works best on desktop or with an external keyboard.