Okay, I've made a Hello World app for the PSP in C following a guide before I know one or two things
I know about // and /* */ for ignoring lines and stuff, it's this stuff that I get lossed at (This is very sad I know it =| )/*
SonniE's Hello World C++ Example 1
This Program Shows basic console printing skills
*/
#include <iostream>
using namespace std;
int main()
{
cout<<"Hello World";
system("pause");
}
Is { used to start a function and } used to end a function?#include <iostream>
using namespace std;
int main()
{
cout<<"Hello World";
system("pause");
}