mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
438073e110
properly so far.
23 lines
252 B
R
23 lines
252 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
|