diff options
author | Aleks-Daniel Jakimenko <alex.jakimenko@gmail.com> | 2015-08-25 22:31:25 +0300 |
---|---|---|
committer | Aleks-Daniel Jakimenko <alex.jakimenko@gmail.com> | 2015-08-25 22:31:25 +0300 |
commit | 45c70baa69088ca4aa9189556641a773b2b9c305 (patch) | |
tree | e43cd89c08f567e0bf64a535fb9eb35a8d46cfef | |
parent | f8144d5749144c667988cada11a1e8ba13abf49d (diff) |
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 { |