Update perl6.html.markdown

This commit is contained in:
Jack Kuan 2015-09-23 00:04:02 -04:00
parent 6cdba66ef5
commit 62f27af4c3

View File

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