Formatting
From berki WIKI
Boxes
{{warning|..text...}}
Warning
....text...
{{note|..text...}}
Note
....text...
{{tip|..text...}}
Tip
....text...
class ForDemo {
public static void main(String[] args){
for(int i=1; i<11; i++){
System.out.println("Count is: " + i);
}
}
}