📅  最后修改于: 2022-03-11 14:52:23.382000             🧑  作者: Mango
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);
}
}