On this page:
local
letrec
let*
cond
else
if
and
or
time
check-expect
check-within
check-error
check-member-of
check-range
empty
true
false
require

5.15 Unchanged Forms

(local [definition ...] expr)
(letrec ([id expr-for-let] ...) expr)
(let* ([id expr-for-let] ...) expr)
The same as Intermediate’s local, letrec, and let*.

(cond [expr expr] ... [expr expr])
else
The same as Beginning’s cond, except that else can be used with case.

(if expr expr expr)
The same as Beginning’s if.

(and expr expr expr ...)
(or expr expr expr ...)
The same as Beginning’s and and or.

(time expr)
The same as Intermediate’s time.

(check-expect expr expr)
(check-within expr expr expr)
(check-error expr expr)
(check-member-of expr expr expr ...)
(check-range expr expr expr)
The same as Beginning’s check-expect, etc.

Constants for the empty list, true, and false.

(require module-path)
The same as Beginning’s require.