You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Conditional expressions are of the form: (if test-exp then-exp) (if test-exp then-exp else-exp)
The test-exp is a boolean expression while the then-exp and else-exp are expressions. If the value of the test-exp is true then the then-exp is returned else the else-exp is returned.
The text was updated successfully, but these errors were encountered:
Conditional expressions are of the form:
(if test-exp then-exp)
(if test-exp then-exp else-exp)
The
test-exp
is a boolean expression while thethen-exp
andelse-exp
are expressions. If the value of thetest-exp
is true then thethen-exp
is returned else theelse-exp
is returned.The text was updated successfully, but these errors were encountered: