summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1996-09-17 01:47:45 +0000
committerPer Bothner <per@bothner.com>1996-09-17 01:47:45 +0000
commit877d54c39aaedb26ed42454af1596bdc27dad611 (patch)
treeb64240d3884d88341c6d5a404d17a6b94c7062aa
parent0e154441cf22654bd1763cb0612598ad3f7702f4 (diff)
Merged from HEAD.kawa_1_0
-rw-r--r--CHANGES37
1 files changed, 0 insertions, 37 deletions
diff --git a/CHANGES b/CHANGES
deleted file mode 100644
index ab9fba34c..000000000
--- a/CHANGES
+++ /dev/null
@@ -1,37 +0,0 @@
-Kawa 0.2 (6-10-96)
-
-Created an Executable and Syntaxable interface for procedures and syntaxes.
-
-Changed class names to get rid of name conflicts that were causing
-problems due to java compiler bugs.
-
-Changed string to be java.lang.StringBuffer
-
-Added Procedure0, Procedure1, Procedure2, Procedure3, Procedure4 classes
-for simplifying procedure parameter checking.
-
-Added Syntax0, Syntax1, Syntax2, Syntax3, Syntax4 classes for simplifying
-syntax parameter checking.
-
-Fixed lambda to clone the current execution frames. Thus, the following now
-works:
- (define x 5)
- (define foo (lambda () x))
-
- (let ((x 10)) (foo)) => 5
-
- -and-
-
- (define bar (let ((x 1)) (lambda () x)))
- (bar) => 1
-
-Created the kawa.lang.iport and kawa.lang.oport classes for input and output
-ports, respectively.
-
-Finished the kawa.Shell class.
-
-Create in, out, err members on the kawa.lang.Interpreter class for the stdin,
-stdout, stderr respectively (as iport or oport).
-
-
-Kawa 0.1 Initial release