Archive for May, 2006

Programming

May 9th, 2006 by riley

Just so it’s clear … cat’s can program just fine.

For instance …

public class MeowWorld extends Object {
	public static final void main(String[] args) {
		MeowWorld meow = new MeowWorld();
		meow.go();
	}

	private void go() {
		System.out.println("Just in case you were wondering");
		System.out.println("Meow world");
	}
}

So there!