Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[KO] Update pattern matching #819

Merged
merged 1 commit into from
Nov 24, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ko/lessons/basics/pattern-matching.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lang: ko

## 매치 연산자

변화구를 받을 준비가 되셨습니까? Elixir에서 `=`는 사실 매치 연산자입니다. 매치 연산자를 통해서 값을 대입한 후 매치시킬 수 있습니다. 아래 코드를 보십시오.
조금 꼬아 볼까요? Elixir에서 `=`는 사실 대수에서 등호와 같은 역활을 하는 매치 연산자입니다. 이것을 쓰면 전체 표현식이 방정식으로 바뀌고 Elixir가 왼쪽의 값과 오른쪽의 값을 매치시킵니다. 매치가 성공하면 방정식의 값을 반환하고, 그렇지 않을 경우 에러를 발생시킵니다. 아래 코드를 보십시오.

```elixir
iex> x = 1
Expand Down