// A Beginning Programmer's Guide to Java

// Semicolon demonstrations
// from http://beginwithjava.blogspot.com/2008/06/those-pesky-semicolons.html
// by Mark Graybill, June 2008

// This version is the first (working) version of the program.
// It has the minimum number of semicolons to compile.
// Remove the single semicolon here to see what happens if it's missing.

public class Semicolon1{
  public static void main(String arg[]){
    System.out.println("argl bargl");
  }
}