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,
[code]
var name : string
get name
if name = "Jacob"
put "ok... interesting..."
end if
[/code]
and you'll get this...
code: |
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...
[quote]
var name : string
get name
if name = "Jacob"
put "ok... interesting..."
end if
[/quote]
and you'll get this...
Quote:
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.