Hacker News new | ask | show | jobs
by nine_k 498 days ago
Said promise should also be checked for sanity. E.g.

  for i in range(N) {
    for i in range(M) {
      # Typo; wanted j.
      # The compiler should complain.
    }
  }
1 comments

The Rust compiler would complain in this case that the initial i variable is unused. Unused variables should be named with an underscore, _.