Skip to content

Instantly share code, notes, and snippets.

@ijingo
Created November 18, 2016 07:06
Show Gist options
  • Save ijingo/4ccb931a8fba341ed545602ea91ba4df to your computer and use it in GitHub Desktop.
Save ijingo/4ccb931a8fba341ed545602ea91ba4df to your computer and use it in GitHub Desktop.
for{
x := 1
switch {
case x > 0:
fmt.Println("a")
case x == 1:
fmt.Println("b")
default:
fmt.Println("c")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment