Go: for loop and switch

Go

Example of the for statement with a switch in the block.

package main

import "fmt"

func main() {
	for i := 0; i <= 3; i++ {
		switch i {
		case 0:
			fmt.Println(i, "Zero")
		case 1:
			fmt.Println(i, "One")
		case 2:
			fmt.Println(i, "Two")
		default:
			fmt.Println(i, "Unknown Number")
		}
	}
}