What's new

Updates!

Considering it's the end of the week I decided to take some time to give you guys some forum upgrades.



First on the list is syntax highlighting:

[pre="python"]

if (x > y):

print("x is greater than y")

x = x -1

else:

print("x is less than or equal to y")

[/pre]



Second is a who has been online recently tab down the bottom.



Also Admins/Moderators of forums have had their user boxes highlighted to provide faster recognition of an official answer.



Code:
[pre="language"]

... your code goes here ...

[/pre]



If you want to select specific line inside your code, please do this:



[pre="language;box:4"]

... your code goes here ...

[/pre]



For multiple lines selection:



[pre="language;box:9-14"]

... your code goes here ...

[/pre]



Multiple separate lines selection:



[pre="language;box:4,9-14"]

... your code goes here ...

[/pre]
 

Ikroth

Level 16
Sep 17, 2010
111
1
Credits
917
Points
0
[pre="javascript"]



var a = 0;



while (9001>666)

{

document.write("umad ");

a++;

if(a%45 == 0)

{

document.write("
");

}

}

[/pre]
 
Top