quakeforge/ruamoko/scheme/Void.r
Brian Koropoff 281b683e14 Initial commit of a future partial implementation of the R5RS Scheme
standard, implemented in Ruamoko.  Currently works for a few simple
"Hello, world!" programs.
2005-05-01 11:48:36 +00:00

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