public class Pour extends Canvas {
    String s = "Welcome to POUR!";
    Pour(Graphics g) {
        g.drawString(s, 0, 0);
    }
}