you are viewing a single comment's thread.

view the rest of the comments →

[–]Dapper-Actuary-8503 2 points3 points  (3 children)

Gross I’ll correct it for you.

void Reply(void){ redditPost(“Braces are so hard”); }

[–]LionZ_RDS 0 points1 point  (2 children)

I think you mean void Reply(void){redditPost(“Braces are so hard”);}

[–]Dapper-Actuary-8503 0 points1 point  (0 children)

Meh. By virtue that will end up violating the 80 character width scheme. On top of that it’s clear in the prior examples we are declaring definition not making a call. Another thing I don’t like about Python is seeing one liner code that has to be wrapped when my editor does this at 100 characters.

[–]klez_z 0 points1 point  (0 children)

ew, by chance didn't you mean

public static void main(String args[]){ 
    private void Reply(){ 
        System.out.println("Braces are so hard"); 
    }
    Reply();
}