/** * SimpleWithVariable.java * * A slightly less simple Java program to complain about the weather, * this time containing data. * * David Liben-Nowell * CS117, Winter 2006 */ public class SimpleWithVariable { public static void main(String[] args) { String message = "It could be worse; we could be in Duluth."; System.out.println(message); } }