view mxtool/ClasspathDump.java @ 16319:a4bd33d52985

Fixing tests with number conversions, float and double handling. Introducing new VIS3 instructions. Adding testcases.
author Stefan Anzinger <stefan.anzinger@gmail.com>
date Tue, 03 Jun 2014 14:29:40 +0200
parents a6bd486b1b44
children
line wrap: on
line source

public class ClasspathDump {
    public static void main(String[] args) {
        System.out.print(System.getProperty("sun.boot.class.path"));
        System.out.print("|");
        System.out.print(System.getProperty("java.ext.dirs"));
        System.out.print("|");
        System.out.print(System.getProperty("java.endorsed.dirs"));
    }
}