Samples
Samples
switch-evaluation-order
Language: Gold, Platform: Echoes, Category: Tour of Go
https://github.com/remobjects/ElementsSamples/tree/master/Gold/Echoes/Tour of Go/switch-evaluation-order
-
switch-evaluation-order.Echoes
-
References
- #
- Source Files
-
Other Files
-
References
switch-evaluation-order.go
// Ignored build directive: +build OMIT
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("When's Saturday?")
today := time.Now().Weekday()
switch time.Saturday {
case today + 0:
fmt.Println("Today.")
case today + 1:
fmt.Println("Tomorrow.")
case today + 2:
fmt.Println("In two days.")
default:
fmt.Println("Too far away.")
}
}
