diff options
| author | Rich Hickey <richhickey@gmail.com> | 2006-05-08 15:53:43 +0000 |
|---|---|---|
| committer | Rich Hickey <richhickey@gmail.com> | 2006-05-08 15:53:43 +0000 |
| commit | 393b6fcf74aa8e27adce220d15d0b12be1d8ce1c (patch) | |
| tree | 664e7b43824736d949df2fb2350696d9445543c7 /src/cli/runtime/RT.cs | |
| parent | 89920242d109db57c30882e8eb2919533721c81f (diff) | |
first pass at Reflector impl
Diffstat (limited to 'src/cli/runtime/RT.cs')
| -rw-r--r-- | src/cli/runtime/RT.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cli/runtime/RT.cs b/src/cli/runtime/RT.cs index 44cc0bfb..51d40809 100644 --- a/src/cli/runtime/RT.cs +++ b/src/cli/runtime/RT.cs @@ -20,6 +20,7 @@ public class RT {
public static Symbol T = Symbol.intern("t");
+ public static Object[] EMPTY_ARRAY = new Object[0];
static public Object eq(Object arg1, Object arg2) {
return (arg1 == arg2)?T:null;
|
