
-----------------------------------
Saad
Thu Apr 09, 2009 6:54 pm

Syntax tags
-----------------------------------
Syntax tags are useful to make your code readable to anybody wanting to see it. For example, consider this code you decide to post:

var foo : int
get foo % I get foo
for i : 1 .. foo
    put i
end for


You will realise that it is annoying to read because it lacks the color and spaces. Now consider syntax tags:

var foo : int
get foo % Get foo
for i : 1 .. foo
    put i
end for

Now you have colors, spacing and the formatting people are used to seeing in the Turing IDE. So please use syntax tags, they help others help you :).

To use syntax tags copy paste and put the code in the middle
Code Here[/code]
