This commit is contained in:
ven 2014-12-29 22:48:01 +01:00
parent b3a33713c2
commit 1c52c5ea12

View File

@ -212,7 +212,7 @@ say $x; #=> 52
# - `if` # - `if`
# Before talking about `if`, we need to know which values are "Truthy" # Before talking about `if`, we need to know which values are "Truthy"
# (represent True), and which are "Falsey" (or "Falsy") -- represent False. # (represent True), and which are "Falsey" (or "Falsy") -- represent False.
# Only these values are Falsey: (), 0, "0", Nil, A type (like `Str` or `Int`), # Only these values are Falsey: (), 0, "0", "", Nil, A type (like `Str` or `Int`),
# and of course False itself. # and of course False itself.
# Every other value is Truthy. # Every other value is Truthy.
if True { if True {