KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > MyBlock


1 public class MyBlock {
2
3     public static void main(String JavaDoc [] args){
4         {
5             int i = 0;
6             System.out.println(i);
7         }
8         {
9             int i = 9;
10             System.out.println(i);
11         }
12         int i = 8;
13         System.out.println(i);
14     }
15 }
16
Popular Tags