diff options
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;
|