The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
public class Main
{
	public void doit() {
		Print p = new Print();
		p.doPrint();
	}
	
    public static void main(String[] args) {
        new Main().doit();
    }
}