#lang scribble/manual @title{Infix operators} The arithmetic operators @tt{+}, @tt{-}, @tt{*}, @tt{/}, @tt{%} (modulo), and @tt{**} (exponentiation) are provided, as well as the boolean operators @tt{<}, @tt{<=}, @tt{=}, @tt{>=}, @tt{>}, and @tt{!=} (not equal). Boolean operators can be chained as in Python: @verbatim|{ > 2 < 3 <= 4 True }| (here the `>` represents the prompt, not the greater-than sign). Note that we use @tt{=} for equality testing, not @tt{==}.