ftp.nice.ch/pub/next/games/card/Solitaire.2.1.s.tar.gz#/Solitaire.2.1.s/Solitaire/Solitaire_main.m

This is Solitaire_main.m in view mode; [Download] [Up]

/* Generated by the NeXT Project Builder 
   NOTE: Do NOT change this file -- Project Builder maintains it.
*/

#import <stdlib.h>
#import <sys/param.h>
#import <objc/NXBundle.h>

#import <appkit/Application.h>

void main(int argc, char *argv[]) {
    char	path[MAXPATHLEN+1];
    
    NXApp = [Application new];
    if ([[NXBundle mainBundle] getPath:path forResource:"Solitaire" ofType:"nib"])
	if ([NXApp loadNibFile:path owner:NXApp withNames:NO fromZone:[NXApp zone]])
	    [NXApp run];
    [NXApp free];
    exit(0);
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.