Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

bool in java

class App {
 public static void main(String[] args) {
  // The boolean keyword is for creating a variable with boolean data type.
   boolean result = true;
   System.out.println(result);
 }
}
 
PREVIOUS NEXT
Tagged: #bool #java
ADD COMMENT
Topic
Name
6+3 =