mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 21:31:48 +00:00
13 lines
163 B
Mathematica
13 lines
163 B
Mathematica
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface GSSpeechServer
|
||
|
+ (void)start;
|
||
|
@end
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
[NSAutoreleasePool new];
|
||
|
[GSSpeechServer start];
|
||
|
return 0;
|
||
|
}
|