// // Copyright (C) 2002-2003 The University of Melbourne. // This file may only be copied under the terms of the GNU Library General // Public License - see the file COPYING.LIB in the Mercury distribution. // // package mercury; public class bool { public static class bool_0 { public static final int no = (int) 0; public static final int yes = (int) 1; public int value; public bool_0(int val) { this.value = val; return; } } }