mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
30 lines
229 B
R
30 lines
229 B
R
@interface nack
|
|
+arg;
|
|
-bla;
|
|
@end
|
|
|
|
@interface foo : nack
|
|
+bar;
|
|
+baz;
|
|
-snafu;
|
|
@end
|
|
|
|
@implementation foo
|
|
|
|
+bar
|
|
{
|
|
[self bla];
|
|
return [self baz];
|
|
}
|
|
|
|
+baz
|
|
{
|
|
return [self snafu];
|
|
}
|
|
|
|
-snafu
|
|
{
|
|
[self baz];
|
|
return [self snafu];
|
|
}
|
|
@end
|