diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-05-01 19:33:28 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-05-01 19:33:28 +0000 |
commit | baee29c98b683834c7aaef8763848af7bdc0b439 (patch) | |
tree | 29d68747e6444a92f3ddd136a99998103753cbff /src | |
parent | a8e98c4870ee26092ba6ed6aca8cc099ecab1c67 (diff) |
made RT.T public
Diffstat (limited to 'src')
-rw-r--r-- | src/cli/runtime/RT.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/RT.cs b/src/cli/runtime/RT.cs index 74497464..0f2efee9 100644 --- a/src/cli/runtime/RT.cs +++ b/src/cli/runtime/RT.cs @@ -19,7 +19,7 @@ namespace org.clojure.runtime public class RT
{
- static Symbol T = Symbol.intern("t");
+ public static Symbol T = Symbol.intern("t");
static public Object eq(Object arg1, Object arg2) {
return (arg1 == arg2)?T:null;
|