home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Education Sampler 1992 [NeXTSTEP]
/
Education_1992_Sampler.iso
/
Programming
/
Source
/
Weather
/
Weather.app
/
Weather_main.m
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-11-04
|
278 b
|
15 lines
/*
* Generated by the NeXT Interface Builder.
*/
#import <stdlib.h>
#import <appkit/Application.h>
void main(int argc, char *argv[]) {
NXApp = [Application new];
[NXApp loadNibSection:"Weather.nib" owner:NXApp];
[NXApp run];
[NXApp free];
exit(0);
}