To use this website fully, you first need to accept the use of cookies. By agreeing to the use of cookies you consent to the use of functional cookies. For more information read this page.

Official ZPE/YASS documentationBoolean data type

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
Code previewClose
Feedback 👍
Comments are sent via email to me.