mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
281b683e14
standard, implemented in Ruamoko. Currently works for a few simple "Hello, world!" programs.
22 lines
219 B
R
22 lines
219 B
R
#include "Void.h"
|
|
|
|
Void voidConstant;
|
|
|
|
@implementation Void
|
|
|
|
+ (void) initialize
|
|
{
|
|
voidConstant = [Void new];
|
|
}
|
|
|
|
+ (id) voidConstant
|
|
{
|
|
return voidConstant;
|
|
}
|
|
|
|
- (string) printForm
|
|
{
|
|
return "<void>";
|
|
}
|
|
|
|
@end
|