package uk.ac.leeds.ccg.cluster; // wrapper class to pass integers as updatable reference parameters for GAM/K // // J R Davy // Jan 1998. import java.io.*; import java.util.*; public class MyInt { public int x; public MyInt() {} public MyInt(int xx) { x = xx;} public int value() {return x;} public static void main(String argv[]) { System.out.println("Hello world"); System.exit(0); } }