Most of the C's.

This commit is contained in:
Simon Forman
2022-03-24 12:33:20 -07:00
parent 43649685ac
commit 9057e3b347
11 changed files with 807 additions and 905 deletions
+1 -2
View File
@@ -340,10 +340,9 @@ def choice(stack):
---------------------
B
Currently Python semantics are used to evaluate the "truthiness" of the
Boolean value (so empty string, zero, etc. are counted as false, etc.)
'''
(if_, (then, (else_, stack))) = stack
assert isinstance(if_, bool), repr(if_)
return then if if_ else else_, stack