diff options
author | ven <vendethiel@hotmail.fr> | 2015-09-23 08:43:11 +0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2015-09-23 08:43:11 +0200 |
commit | a221318b89e41f29af778cfee6bd9546abfbcdb4 (patch) | |
tree | f9e93f76f14182edf81da16327e6fbece5d69195 | |
parent | 6cdba66ef506bfdf77efd12690f892ba7e3f0d82 (diff) | |
parent | 62f27af4c38f546f29fcf095fc653989b0667908 (diff) |
Merge pull request #1246 from kjkuan/patch-1
Update perl6.html.markdown
-rw-r--r-- | perl6.html.markdown | 2 |
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 { |