mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
8e2f392d2d
This is an imperfect revision of history.
19 lines
174 B
R
19 lines
174 B
R
@interface Foo : Object
|
|
-run;
|
|
@end
|
|
|
|
|
|
@implementation Foo
|
|
|
|
+ (void) initialize
|
|
{
|
|
print ("+initialize\n");
|
|
}
|
|
|
|
-run
|
|
{
|
|
print ("Hello world\n");
|
|
printf ("%i\n", self);
|
|
}
|
|
|
|
@end
|