diff options
author | ven <vendethiel@hotmail.fr> | 2015-08-25 21:43:52 +0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2015-08-25 21:43:52 +0200 |
commit | aca299f45116aebbde8d037efff49a0a1aa5c8e1 (patch) | |
tree | e43cd89c08f567e0bf64a535fb9eb35a8d46cfef | |
parent | f8144d5749144c667988cada11a1e8ba13abf49d (diff) | |
parent | 45c70baa69088ca4aa9189556641a773b2b9c305 (diff) |
Merge pull request #1210 from AlexDaniel/master
In perl6, 0 is not falsey anymore
-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 de7d2f25..af545793 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: (), 0, "", Nil, A type (like `Str` or `Int`), +# Only these values are Falsey: (), "", Nil, A type (like `Str` or `Int`), # and of course False itself. # Every other value is Truthy. if True { |