[Go/Golang] Go 언어 조건문 (switch)
이번에는 switch문이다. https://gobyexample.com/switch Go by Example: Switch Switch statements express conditionals across many branches. package main import ( "fmt" "time" ) func main() { Here’s a basic switch. i := 2 fmt.Print("Write ", i, " as ") switch i { case 1: fmt.Println("one") case 2: fmt.Println("two") case 3: fmt.Prin gobyexample.com 이번 예제의 코드는 아래와 같다. package main import ( "fmt" "time" ) fu..
2022.06.10