mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
281b683e14
standard, implemented in Ruamoko. Currently works for a few simple "Hello, world!" programs.
14 lines
162 B
R
14 lines
162 B
R
#include "Procedure.h"
|
|
|
|
@implementation Procedure
|
|
- (void) invokeOnMachine: (Machine) m
|
|
{
|
|
return;
|
|
}
|
|
|
|
- (string) printForm
|
|
{
|
|
return "<procedure>";
|
|
}
|
|
|
|
@end
|