corda/test/Hello.java

12 lines
278 B
Java
Raw Normal View History

2007-06-25 01:34:07 +00:00
public class Hello {
public static void main(String[] args) {
System.out.println("hello, world!");
try {
Runtime.class.getMethod("dumpHeap", String.class)
.invoke(null, "/tmp/heap.bin");
} catch (Exception e) {
e.printStackTrace();
}
2007-06-25 01:34:07 +00:00
}
}