15 lines
257 B
Mathematica
15 lines
257 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// MasterPassword
|
||
|
//
|
||
|
// Created by Maarten Billemont on 04/03/12.
|
||
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
return NSApplicationMain(argc, (const char **)argv);
|
||
|
}
|