Friday, April 26, 2013

SyntaxHighlighter


Reference:
+http://alexgorbatchev.com/SyntaxHighlighter/
+http://pydoing.blogspot.tw/2010/11/syntaxhighlighter-blogger.html


    
class DemoApp {
public static void main(String[] args)
    {
        Demo d = new Demo();
        d.printMessage();
    }
}
 
class Demo {
    String message = " this is sslake test";
     
    public void printMessage() {
        System.out.println(message);
    }
}
/*
this is sslake sample test of SyntaxHighlighter.
*/ 

No comments:

Post a Comment