summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJack Kuan <jack.kuan@thescore.com>2015-09-23 00:04:02 -0400
committerJack Kuan <jack.kuan@thescore.com>2015-09-23 00:04:02 -0400
commit62f27af4c38f546f29fcf095fc653989b0667908 (patch)
treef9e93f76f14182edf81da16327e6fbece5d69195
parent6cdba66ef506bfdf77efd12690f892ba7e3f0d82 (diff)
Update perl6.html.markdown
-rw-r--r--perl6.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl6.html.markdown b/perl6.html.markdown
index af545793..8d425f7d 100644
--- a/perl6.html.markdown
+++ b/perl6.html.markdown
@@ -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 {