* src/native/jni.hpp: We typedef the JNI types to the CACAO internal
[cacao.git] / tests / prop.java
1 import java.io.*;
2
3 public class prop {
4     public static void main(String [] argv) throws IOException {
5         System.getProperties().store(System.out, "all properties:");
6     }
7 }