Difference between revisions of "Formatting"

From berki WIKI
Jump to: navigation, search
(Created page with " = Boxes = <pre> {{warning|..text...}} </pre> {{warning|....text...}}")
 
Line 7: Line 7:
 
</pre>
 
</pre>
 
{{warning|....text...}}
 
{{warning|....text...}}
 +
 +
 +
<pre>
 +
{{note|..text...}}
 +
</pre>
 +
{{note|....text...}}
 +
 +
<pre>
 +
{{tip|..text...}}
 +
</pre>
 +
{{tip|....text...}}
 +
 +
 +
<code>
 +
class ForDemo {
 +
    public static void main(String[] args){
 +
        for(int i=1; i<11; i++){
 +
              System.out.println("Count is: " + i);
 +
        }
 +
    }
 +
}
 +
</code>
 +
 +
 +
 +
 +
= Text formatting =

Revision as of 17:19, 8 September 2016


Boxes

{{warning|..text...}}
WarningIcon.png

Warning
....text...


{{note|..text...}}
ImportantIcon.png

Note
....text...


{{tip|..text...}}
TipIcon.png

Tip
....text...


class ForDemo {

   public static void main(String[] args){
        for(int i=1; i<11; i++){
             System.out.println("Count is: " + i);
        }
   }

}



Text formatting