KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > EqBool


1 public class EqBool {
2
3     public static void main(String JavaDoc [] args){
4         boolean b1 = true;
5         boolean b2 = true;
6         if (b1 == b2){
7             
8         }
9     }
10 }
11
Popular Tags