//******************************************************************** // Football.java Author: R. Tessier // // Demonstrates the difference between print and println. //******************************************************************** public class Football { //----------------------------------------------------------------- // Prints two lines of output representing a rocket countdown. //----------------------------------------------------------------- public static void main (String[] args) { System.out.print ("Hut 1... "); } }