Skip to content

Commit

Permalink
typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Lecarme committed Sep 26, 2012
1 parent b047357 commit 904da18
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions slides/main/slides.md
Expand Up @@ -190,7 +190,7 @@ Channel is a pipe, you pull something one side, and pull it in the other side.

Channel blocks on put (waits for a receiver), but there is also buffered channel,
with some room to fill before blocking.

)
```go
for {
m := <-channel.channel
Expand All @@ -213,7 +213,7 @@ Or waiting for Java 5.
There is reference and pointer in Go, but no tricks.

When you launch your application, you ask why there is so few cores
in this computer, and so many useless memory
in this computer, and so many useless memory.

!SLIDE
# Where go fits well?
Expand All @@ -227,5 +227,5 @@ Go is young, pioneer still exist. Your brain is large enough to handle most of i
* Use go when java is needed but Eclipse is not installed. Be careful, nobody can beat java libraries.
* Don't use go when C++ is needed, because C++ developer only fall in love one time.

Go is low level, loves parralel task, doesn't have so many libraries.
Use it for network services or tasks.
Go is low level, loves parralel tasks, doesn't have so many libraries.
Use it for network tasks (client or server).

0 comments on commit 904da18

Please sign in to comment.