Skip to content

Commit

Permalink
[KO] Remove the iex line numbers (#934)
Browse files Browse the repository at this point in the history
  • Loading branch information
nscyclone committed Jan 20, 2017
1 parent 8b81974 commit 4c93402
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ko/lessons/basics/basics.md
Expand Up @@ -37,11 +37,11 @@ Elixir를 설치하면 대화형 셸인 `iex`가 함께 설치됩니다. `iex`
여기서 계속 나아가봅시다. 간단한 코드를 조금 써 보면서 체험해보세요.

```elixir
iex(1)> 2+3
iex> 2+3
5
iex(2)> 2+3 == 5
iex> 2+3 == 5
true
iex(3)> String.length("The quick brown fox jumps over the lazy dog")
iex> String.length("The quick brown fox jumps over the lazy dog")
43
```

Expand Down

0 comments on commit 4c93402

Please sign in to comment.