… and what’s worse than Monday blues is definitely attending class on a rainy Monday morning… *sigh*

Anyway, out of boredom in class, I wrote the following code:

public class AdvProgramming extends JavaProgramming {

    public String loop_repetitive_boring_lectures() {
        return “blah… blah… blah”;
    }

    public static void main(String[] args) {
        int sleepy = 100;
        boolean snore = false;
        while (time >= 8.00am && time <= 10.00am) {
            System.out.println(loop_repetitive_boring_lectures());
            sleepy++;
            if (sleepy > 150)
                snore = true;
        }
    }
}

*For those of you tempted to compile this Java code, it won’t work, so don’t bother wasting your time. smiley

Okay, break’s over, back to class…. yawn!