Hacker News new | ask | show | jobs
by EdwardDiego 2139 days ago
Yeah when I picked up Go, the infinite loop caught me by surprise:

  for {
    ...
  }
1 comments

Looks like a minor simplification of

  for (;;) {
     ...
  }
I'm biased by my experience with c, but I do like the explicit punctuation.