mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 11:11:21 +00:00
11 lines
226 B
Mathematica
11 lines
226 B
Mathematica
|
#import <GSWeb/GSWeb.h>
|
||
|
|
||
|
int main(int argc, const char *argv[])
|
||
|
{
|
||
|
int ret=0;
|
||
|
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
||
|
ret=GSWApplicationMain(@"DynamicElements", argc, argv);
|
||
|
[arp release];
|
||
|
return ret;
|
||
|
}
|