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/Void.r
2011-02-14 23:10:46 +09:00

23 lines
253 B
R

#include "Void.h"
Void *voidConstant;
@implementation Void
+ (void) initialize
{
voidConstant = [Void new];
[voidConstant makeRootCell];
}
+ (id) voidConstant
{
return voidConstant;
}
- (string) printForm
{
return "<void>";
}
@end