quakeforge/ruamoko/scheme/Void.r

23 lines
219 B
R
Raw Normal View History

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