test source code colouring
   1:/
   2:   First Lab
   3: 
   4: @author    eknapp
   5: /
   6:public class LabOneFirstClass {
   7:
   8:    /
   9:       The main program for the LabOneFirstClass class
  10:     
  11:     @param  args  The command line arguments
  12:     /
  13:    public static void main(String[] args) {
  14:
  15:        //This is a one-line comment
  16:
  17:        /
  18:           This is a
  19:           multi-line
  20:           comment.
  21:         */
  22:         
  23:        
  24:        System.out.println("Hi there!");
  25:
  26:    }
  27:
  28:}
  29:
Edit this page or watch for changes using RSS.