KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > LitTest


1 public class LitTest {
2
3     public static void main(String JavaDoc [] args) {
4     
5         int i = 0;
6         double j = 0.9;
7         char x = 'c';
8         byte b = 8;
9         short s = 9;
10         long l = 10000;
11         float f = 0.99F;
12         String JavaDoc st = "this";
13     }
14 }
15
Popular Tags