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