Hello There, Guest! Login or Register


Future...
#5
I'm willing to create an automated style-checker for the entire gamemode, but then the coding style has to be clear. My preference:

Code:
#include <file>
#include "file.pwn"

stock functionName (param1, param2)
{
    new a, b = 2, c;
    new foo = b;
   
    if (foo == (a + c))
    {
        printf ("Foo equals %d + %d", a, c);
        return 1;
    }
   
    return 0;
}
Reply


Messages In This Thread
Future... - by thiaZ - 12-06-2010, 04:30 PM
Re: Future... - by Jay - 12-06-2010, 05:44 PM
Re: Future... - by Matthias - 12-10-2010, 01:51 PM
Re: Future... - by tomozj - 12-11-2010, 02:05 AM
Re: Future... - by Peter - 12-11-2010, 12:09 PM
Re: Future... - by Jay - 12-11-2010, 12:17 PM