// This appears in Core Web Programming from
// Prentice Hall Publishers, and may be freely used
// or adapted. 1997 Marty Hall, hall@apl.jhu.edu.

public class PropertyTest {
  public static void main(String[] args) {
    System.out.println
      ("Java: " + System.getProperty("java") + "\n" +
       "CGI: " + System.getProperty("cgi") + "\n" +
       "C++: " + System.getProperty("cpp"));
  }
}
