Code highlight example (HelloWorld.java):
this:
package com.akceptor.helloworld
public class HelloWorld {
/**
* This is comment
*/
public static void main(String[] args) {
//Prints helloworld message
System.out.print("Hello, World \n");
}
}
becomes this:
1 2 3 4 5 6 7 8 9 10 11 | package com.akceptor.helloworld public class HelloWorld { /** * This is comment */ public static void main(String[] args) { //Prints helloworld message System.out.print("Hello, World \n"); } } |
0 коментарі:
Дописати коментар