if (a) {
for (i=0; i<<b; i++) {
if (q) {
myvar = reasonable_function(foo) + another_reasonable_name(bar);
}
}
}
Column 80 is at the 'm' in another_reasonable_name. Sure, line continuation. But it's harder to read and a much simpler fix that is ALSO easier to read is to just not be so wasteful of horizontal space.public class Example {
public static void Main(String[] args) {
Integer x = 1;
if (x == 1) {
System.out.println("See?");
}
}
}
And that's why four spaces (not tabs) is the One True Indentation Style.« Older Handwritten 1961 memo in father's immigration file... | Michael had always claimed he ... Newer »
This thread has been archived and is closed to new comments
Now what the hell does 'gidsetsize' mean?
posted by bwg at 4:13 AM on April 27, 2011