Source of SimplePrint.java


  1: /**
  2:  * simple printing exercise
  3:  *
  4:  * @author Mark Young (A00000000)
  5:  */
  6: public class SimplePrint {

  8:     /**
  9:      * Run this program.
 10:      *
 11:      * @param args command lines arguments (ignored)
 12:      */
 13:     public static void main(String[] args) {
 14:         int here = 5;
 15:         int there = 42;
 16:         double anyWhere = 2.5;

 18:         System.out.println(here + "there" + anyWhere);
 19:     }

 21: }