It looks like you're new here. If you want to get involved, click one of these buttons!
I just started playing EQ2..the greatest game ever made, hands down..but any ways, i know this has nothing to do with everquest but i thought this wonderful community might be able to help me out!I'm an apprentice hacker/programmer, so far Ive only talked to one programmer..other than that Ive been learning by my self witch is the best way .. until now..if you have read this and r interested or have experience in the field id love some help/advice or Any ones input on program languages/soft wear, maby some one could hook me up?I don't have Any connections yet, sadly..but just thought some one in here might be into it....
sorry if I waisted anyones time
thx!
Comments
My advice: learn c++, its widely used :P
a simple "hello world"
#include <stdlib.h>
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!";
system("pause");
return 0;
}