01: /**************************************************************************/
02: /* N I C E */
03: /* A high-level object-oriented research language */
04: /* (c) Daniel Bonniot 2003 */
05: /* */
06: /* This program is free software; you can redistribute it and/or modify */
07: /* it under the terms of the GNU General Public License as published by */
08: /* the Free Software Foundation; either version 2 of the License, or */
09: /* (at your option) any later version. */
10: /* */
11: /**************************************************************************/package nice.tools.compiler;
12:
13: /**
14: Print the version of the running JVM.
15: */
16: public class JavaVersion {
17: public static void main(String[] args) {
18: System.out.println(System.getProperty("java.version"));
19: }
20: }
|