29.01.2013, 22:34
you can use the '\' character to sort-of "glue" strings over multiple lines.
also, because PAWN is free-form,
is legal. (whitespace characters are ignored by compiler)
pawn Код:
printf(" hi \
john");
pawn Код:
{
new name[] = "helen";
printf("%s",
name);
}

