Recommanded Free YOUTUBE Lecture: <% selectedImage[1] %>

예제로 살펴보는 Go : Value

Go는 strings, integers, floats, booleans 등 다양한 값(value)들을 지원한다. 예제를 통해서 기본적인 값들을 살펴보도록 하자.
package main

import "fmt"

func main() {
    fmt.Println("go" + "lang")
    
    fmt.Println("1 + 1 = ", 1+1)
    fmt.Println("7.0 / 3.0 = ", 7.0/3.0)
    
    fmt.Println(true && false)
    fmt.Println(true || false)
    fmt.Println(!true)
}
		

+ 연산자를 이용해서 스트링을 더 할 수 있다. Integer과 floats 값들의 연산을 확인 할 수 있다. Boolean 연산의 경우 예상한 대로 결과가 나오는 걸 확인 할 수 있다.
다음 예제 : Variables