Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Latest commit

 

History

History
17 lines (10 loc) · 539 Bytes

File metadata and controls

17 lines (10 loc) · 539 Bytes

Learning objectives

  • Know of the existence of the bool type and its two values.
  • Know about boolean operators and how to build logical expressions with them.
  • Know of the boolean operator precedence rules.

Out of scope

  • Pattern matching on booleans.

Concepts

  • booleans: know of the existence of the bool type and its two values; know about boolean operators and how to build logical expressions with them; know of the boolean operator precedence rules.

Prerequisites

  • basics: know how to define functions.