Fuzion Logo
fuzion-lang.dev — The Fuzion Language Portal
JavaScript seems to be disabled. Functionality is limited.

bool constants

Boolean values are supported by the standard library features true and false.

There is no special compiler support for booleans. Instead true and false are implemented using Choice Types like this:

  • bool : choice FALSE TRUE is
  • true bool => TRUE
  • false bool => FALSE