Skip to content

Instantly share code, notes, and snippets.

@sahajre
Created August 1, 2019 15:24
Show Gist options
  • Save sahajre/70ee19676d4321c01c889302a7e789d3 to your computer and use it in GitHub Desktop.
Save sahajre/70ee19676d4321c01c889302a7e789d3 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
i := 42
switch i {
case 0:
fmt.Print("case 0")
case 42:
fmt.Println("Hello, 世界")
default:
fmt.Println("default")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment