public class Retval {
public static void main (String [] args) {
try {
System.out.println ("Hallo");
Process process = Runtime.getRuntime().exec("java Retval");
System.out.println (process.waitFor());
}
catch (Exception e) {
}
System.exit(1);
}
}