2019-03-16 00:00

Go 언어 스터디 - (5) if, switch, for

If Statement
가장 기본적인 if 문부터 살펴보자.
x := 2
if x < 3 {
fmt.Println("x is less than three <3")
}
// 출력: x is less than three <3...

댓글