Source Code Test
This is a test on how to post a source code in blogger....
Now I can post my source code neatly on Blogger.
Got this link on: http://heisencoder.net/2009/01/adding-syntax-highlighting-to-blogger.html
public class Record implements Serializable {
private Long id;
private String title;
private int year;
private double price;
public Record() {
}
public Record(Long id) {
this.id = id;
}
// Along with corresponding getters + setters.
}
Now I can post my source code neatly on Blogger.
Got this link on: http://heisencoder.net/2009/01/adding-syntax-highlighting-to-blogger.html
Comments