mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
281b683e14
standard, implemented in Ruamoko. Currently works for a few simple "Hello, world!" programs.
14 lines
233 B
Objective-C
14 lines
233 B
Objective-C
#ifndef __Number_h
|
|
#define __Number_h
|
|
#include "SchemeObject.h"
|
|
|
|
@interface Number: SchemeObject
|
|
{
|
|
integer value;
|
|
}
|
|
+ (id) newFromInt: (integer) i;
|
|
- (id) initWithInt: (integer) i;
|
|
- (integer) intValue;
|
|
@end
|
|
|
|
#endif //__Number_h
|