this post was submitted on 17 Jun 2023
150 points (98.7% liked)

Programmer Humor

32710 readers
661 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 7 points 2 years ago (2 children)

It goes on the next line, so you can have open and close brackets at the same indent depth for easy visual matching.

[–] [email protected] 4 points 2 years ago (1 children)

Your closing } goes on a new line below at the same indent depth as the line containing the open {!

[–] [email protected] 2 points 2 years ago* (last edited 2 years ago)
fn main() {
    println!("WTF?");
          }

PS: I know what you meant

[–] [email protected] 2 points 2 years ago

This, as it also helps when using % to go to the matching open/close bracket when the cursos doesn't jump all around the place..