Quote Originally Posted by SonniE View Post
do you have a specific question?
Okay, I've made a Hello World app for the PSP in C following a guide before I know one or two things

/*
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");
}
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 =| )

#include <iostream>

using namespace std;

int main()
{
cout<<"Hello World";
system("pause");
}
Is { used to start a function and } used to end a function?