0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-02 15:22:11 +00:00
quakeforge/ruamoko/scheme/Nil.r
2011-02-14 23:10:46 +09:00

24 lines
296 B
R

#include "Nil.h"
#include "defs.h"
Nil *one_nil_to_rule_them_all;
@implementation Nil
+ (void) initialize
{
one_nil_to_rule_them_all = [Nil new];
[one_nil_to_rule_them_all retain];
}
+ (id) nil
{
return one_nil_to_rule_them_all;
}
- (string) printForm
{
return "()";
}
@end