mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-16 01:43:35 +00:00
Estimated hours taken: 2 Branches: main Implement library version for Java. library/library.m: Implement library__version in Java. java/runtime/Constants.java.in: File from which Constants.java is to be generated, which is the source for a class to hold mercury-related constants, such as the library version. configure.in: Added java/runtime/Constants.java to the list of files to generate.
16 lines
523 B
Java
16 lines
523 B
Java
//
|
|
// Copyright (C) 2001-2004 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.
|
|
//
|
|
// This class is used to store miscellaneous Mercury-related constants.
|
|
// At the moment it just stores the library version.
|
|
//
|
|
|
|
package mercury.runtime;
|
|
|
|
public class Constants {
|
|
public static final java.lang.String MR_VERSION = "@VERSION@";
|
|
public static final java.lang.String MR_FULLARCH = "@FULLARCH@";
|
|
}
|