The Boolean data type is one of the most commonly used data types across the YASS
programming language. A Boolean value can be either true
or false
.
The following is an example of the Boolean data type in action, including using it with TYPO:
YASS
$a = true $b = false //Using TYPO (version 1.9.7+) declare $c as boolean = true declare $d as boolean = false
Comments