[NAME] ALL.dao.type.bool [TITLE] Boolean Type [DESCRIPTION] Boolean (bool) is a simple logical data type representing true and false. True and false values are represented by reserved constants true and false respectively. Comparison and logical operations are evaluated to boolean values. 1 var B1 = true 2 var B2 = false 3 var B3 = 3 > 2 4 var B4 = B1 and B2