You're right,
Quote:
Pawn
An embedded scripting language formerly called Small
|
I think you should not learn c++ first, because it's very confusing for a beginner like you to mix up languages like this.
for example:
Creating a variable:
c++:
Code:
int variable; // (integer, c++ also uses ';')
char *variable;
or
char variable[33];
Pawn:
Code:
new variable
or
new variable[33]
__________________