After programming on Windows for a while, I decided to come over to Mac and see port some of my work. But as it seems, for some reason XCode will not allow me to preform a simple task of making a Hello World application in Command Line C++. Here is a quick example (very very quick) of the language I know, and for some reason, it is not working, even though it works in Blodshed.
#include <iostream>
#include <stdlib.h>
int main(int argc, char *argv[])
{
cout << "Hello World" << end1;
return 0;
}
Any advice?
#include <iostream>
#include <stdlib.h>
int main(int argc, char *argv[])
{
cout << "Hello World" << end1;
return 0;
}
Any advice?