/**
 * This is a Javadoc comment.
 * @author David Matuszek
 */
public class SyntaxColoringTest {

    /**
     * Another javadoc comment.
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        String s = "This is a simple string.";
        char ch = 'A';
        double pi = 3.1415926536;
        assert 2 + 2 == 4;
        int x = 5;
        do {
            x--;
            if (x < 0) break;   /* Quit if x < 0 */
        } while (x > 'A' && x > 'B'); // should never matter; always < 'A'
        /* This is a multiline comment
         * and it contains // as well as literals like 5, 3.1416, "hello", and 'X'
         */
        System.out.println("We got out of the \"do\" loop if x < 0");
        System.out.println("Nasty string: \" & 123 & // for 'A' /* 3.1416");
    }
}
