Skip to content

Commit

Permalink
Uncapitalise a word
Browse files Browse the repository at this point in the history
  • Loading branch information
TangoEnSkai committed Nov 5, 2018
1 parent 6b24ea3 commit 1c018f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion section_02_kr/2.03.md
Expand Up @@ -20,7 +20,7 @@ func main() {
**Short declaraion**은 코드 블록(code block)안에서만 사용할 수 있다. `Go`의 경우, 여러분들이 코드에서 생성한 변수는 반드시 사용하게끔 되어 있기 때문에, 위의 코드는 다음과 같은 에러 메시지를 발행한다: `tmp/sandbox141801923/main.go:8: x declared and not used`.

만약에 여러분이 `x`를 출력한다면, 더이상 위의 메시지를 표시하지 않을 것이다.
우리는 또한 **Short declaration operator**를 이용하여 다른 타입의 데이터를 변수에 배정(assign)할 수 있다. 예를 들면, `string` 타입을 아래와 같이 사용 가능 하다.
우리는 또한 **short declaration operator**를 이용하여 다른 타입의 데이터를 변수에 배정(assign)할 수 있다. 예를 들면, `string` 타입을 아래와 같이 사용 가능 하다.

```go
package main
Expand Down

0 comments on commit 1c018f9

Please sign in to comment.