
-----------------------------------
Mazer
Mon Oct 22, 2007 1:21 pm

Use. Code. Tags.
-----------------------------------
I cannot stress how important this is. USE THEM. It makes your code SO much easier to read, and you really want to make sure it's easy to read if you expect people who actually can help you to actually bother.

It works like so:
You type this,
]
var name : string
get name
if name = "Jacob"
    put "ok... interesting..."
end if
]

and you'll get this...
var name : string
get name
if name = "Jacob"
    put "ok... interesting..."
end if


See the magic? The text is monospaced, and the extra spaces for indenting aren't ignored -- that's crucial for me actually caring!

Here's how NOT to do it:
Type this...

]
var name : string
get name
if name = "Jacob"
    put "ok... interesting..."
end if
]

and you'll get this...
var name : string
get name
if name = "Jacob"
    put "ok... interesting..."
end if


And you can see how utterly worthless that is can't you?

If you're feeling extra special, go ahead and replace the code tags with syntax tags. Whatever.

-----------------------------------
Nick
Mon Oct 22, 2007 2:08 pm

RE:Use. Code. Tags.
-----------------------------------
what u should do (MAZER mentioned this at the end) is use syntax tags

]
var name : string
get name
if name = "Jacob"
    put "ok... interesting..."
end if 
]


var name : string
get name
if name = "Jacob"
    put "ok... interesting..."
end if 


also i vote for a sticky on this thread
