Changes from 0.97 to 0.99
==========================

Some bug fixes:
	- Type checking conditional patterns was wrong.

Improvements:
	- Floating point on SPARC and DECstations.
	- Floating point and arbitrary precsion integers
	  are now available.
	  Floating literals must contain a '.', elementary
	  operations on floats are calle +., -., *., /..
	  Bignum literals should end with a # and the 
	  elementary operatiosn are called +#, -#, *#, /#, %#.
	- New floating functions: pi, ceil, floor, fabs, fmtf.
	- Type synonyms are available, the following synonym
	  is predefined:
		type String == List Char
	- Error reporting has been improved, it now gives a file
	  name and a line number.  The line number is an approximation,
	  but it's better than nothing.  The reporting often cannot
	  find an appropriate line and then claims the error is on line 0.

Changes:
	- The gamma function used to return log(gamma(x)), it now
	  returns gamma(x).
	- nil is longer allowed in patterns (use []).

	-- Lennart Augustsson
