This program will output "Hello World!"
#import <Foundation/Foundation.h>
int main(int argc, char * argv[]) {
NSLog(@"Hello World!");
}
#import is a pre-processor directive, which indicates we want to import or include the information from that file into the pr...