The Dink Network

Reply to Re: Globals and the if statement

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
July 27th 2002, 06:32 AM
stonegiant.gif
justa small note on tabbing, the DN ppl here all seem to do this:

if (&foo == &bar)

{

do_this();

}else

{

do_somethinf_else();

}

wheres, i do this:

if (&foo == &bar)

{

do_this();

}

else

{

do_this();

}

theres no right and wrong way to do it, but i find MY way sooo much easier to do, its more logical, thats all...