Programs should be indented properly to make them easier to read.
{
brace → increase indent of following lines by one tab
}
brace → decrease indent of that line and following
lines by one tab
The following program has poor indentation. Paste it into jGRASP and fix it.
public class Icky { public static void main(String[] args) { System.out.println("Properly indented programs"); System.out.println("look ever so much better!"); System.out.println("please fix me"); System.out.println("and make me beautiful again"); } }