View Single Post
Old Oct 15, 2012, 10:26 PM   #7
W1zzard
Benevolent Dictator
 
W1zzard's Avatar
 
Join Date: May 2004
Location: Stuttgart, Germany
Posts: 13,758 (4.18/day)
Thanks: 184
Thanked 10,207 Times in 3,156 Posts
Send a message via ICQ to W1zzard Send a message via AIM to W1zzard Send a message via MSN to W1zzard

System Specs

much more readable once you indent it

Code:
X=0
If Y > 10 then
  X=5
Else
  If Y < 20 then 
    X=7
  Else
    X=9
when using a language that uses closing blocks for if it will be even more readable
Code:
X=0
If Y > 10 then
  X=5
Else
  If Y < 20 then 
    X=7
  Else
    X=9 
  Endif
Endif
W1zzard is offline  
Reply With Quote