This document corresponds to the jel version 0.1
Distribution assembled Mon May 11 21:08:20  1998.


	     Welcome to Java Expressions Library (JEL) .

JEL is designed to evaluate expressions, written in simple, JAVA like
language. Unlike many other approaches to the same problem, JEL, is
not interpreter but it is a compiler. It compiles expressions directly
to Java bytecodes. Other feature of JEL is the possibility to call
Java functions directly (without any wrappers) from the expressions it
compiles. JEL also tries to perform naive optimizations of
expressions, such as constant subexpression evaluation. One of the
design goals of JEL was to make it as SMALL as possible, but with
extensibility in mind.

You can find more details about JEL if You open file ./docs/index.html
in Your favorite WWW browser.


			 I. DISTRIBUTED FILES

The structure of the distribution is following:

./docs
	Contains documentation, both written and javadoc generated.

./lib
	Holds precompiled JEL library in two versions : optimized
	(jel.jar),and debug (jel_g.jar). If You use JEL regularly it
	is the best to put one of those libraries into Your CLASSPATH.

./samples
	Contains samples and testsuite for JEL. Currently (version 0.1)
	there is only one sample, Calculator. If You write a simple,
	free program, using JEL, I will be happy to put is as a
	sample. Anyway, there are still more samples coming in the
	next version.

./src
	Contains JEL source. If You make any modifications to JEL it is
	the best to do them directly in the ./src directory, because it 
	is most closely resembles the structure of my CVS
	repository. This directory contains ALL source files, some of
	them are duplicated in ./samples but ./src is the master copy.


			   II. INSTALLATION

There is not much care to take about JEL installation. First, of
course, You need to install JAVA (if You don't have it already). At
the time of writing JEL was tested on JDK 1.1.6 by SUN. It should work
in any JDK 1.1 compatible Java virtual machine. 

If You don't want to type long command lines I would suggest to put
JEL into Your Java CLASSPATH. The other approach can be to write shell
scripts, prepending ./lib/jel.jar to CLASSPATH of programs, using
JEL. I didn't prepackage such scripts first of all, because I have
CLASSPATH set, and, second , because these scripts will be very much
platform dependent.


			    III. LICENSING

JEL is distributed to You under terms of the GNU General Public
License. This means it is "free software" (see file ./COPYING for
precise definiton). However, any program, using JEL _MUST_ be the
"free software" as well.

There are options, available, for less restrictive licensing. To find
out more contact me (metlov@fzu.cz) directly.

I would be very happy to consider requests for JEL enchancements and
modifications (to fit some particular purpose), syntax of the input
language, for example, can be easily changed... Contact me directly if
You need customized, supported version of JEL.


(c) 1998 Konstantin Metlov (metlov@fzu.cz)

         This software is distributed to You under the terms of the
         GNU General Public license. Copying and modifications are
         permitted. NO WARRANTY of any kind is provided. For precise
         distribution terms see file COPYING in the root of the 
         distribution and in every package directory.




