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