Format code syntax

In this short artical i will show you how to display your code in a nice and readable format. I will be using the Syntax Highlinghting. The only thing you need to do is to insert the preceading code into the header off your template.

// Comment
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 



After that you will be able to use it like this.
// Comment
class Test{
     public static void main(String[] args){
         System.out.println("Hello world!");
     }
}