diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-05-23 22:11:23 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-05-23 22:11:23 +0000 |
commit | 1cd2547d56cd7f56c1149f27bd77142e3fc40b50 (patch) | |
tree | 7e95e840d074a4ccd423fda3e028945b8a45b8f6 /src/cli/runtime/Cons.cs | |
parent | d65b16bde7ffb8caa020472cb7a88b03e128ee4f (diff) |
made Conses const, bindings Boxes
Diffstat (limited to 'src/cli/runtime/Cons.cs')
-rw-r--r-- | src/cli/runtime/Cons.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/runtime/Cons.cs b/src/cli/runtime/Cons.cs index 331e3073..02e20202 100644 --- a/src/cli/runtime/Cons.cs +++ b/src/cli/runtime/Cons.cs @@ -18,8 +18,8 @@ namespace org.clojure.runtime public class Cons : AMap,Iter
{ -public Object first; -public Cons rest; +public readonly Object first; +public readonly Cons rest; public Cons(Object first, Cons rest) { |