mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
14 lines
123 B
R
14 lines
123 B
R
@interface Foo : Object
|
|
-run;
|
|
@end
|
|
|
|
|
|
@implementation Foo
|
|
|
|
-run
|
|
{
|
|
print ("Hello world\n");
|
|
printf ("%i\n", self);
|
|
}
|
|
|
|
@end
|