mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
75ec6bf244
This is a nasty commit, sorry, but 99% of the commit is interdependent.
16 lines
211 B
R
16 lines
211 B
R
#include "Procedure.h"
|
|
#include "Machine.h"
|
|
|
|
@implementation Procedure
|
|
- (void) invokeOnMachine: (Machine []) m
|
|
{
|
|
[m procedure: self];
|
|
return;
|
|
}
|
|
|
|
- (string) printForm
|
|
{
|
|
return "<procedure>";
|
|
}
|
|
|
|
@end
|