diff options
author | ven <vendethiel@hotmail.fr> | 2014-12-29 22:48:01 +0100 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2014-12-29 22:48:01 +0100 |
commit | 1c52c5ea125285eb8a3af5cf4cb510e9c3e7a49b (patch) | |
tree | 47bfb75677f59f7e817208a6942c4789b42055ec | |
parent | b3a33713c2df65b67a30a2075e0f98e5b3bc05ab (diff) |
@wryk++
-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 1536b152..b10e04bf 100644 --- a/perl6.html.markdown +++ b/perl6.html.markdown @@ -212,7 +212,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, "0", Nil, A type (like `Str` or `Int`), +# Only these values are Falsey: (), 0, "0", "", Nil, A type (like `Str` or `Int`), # and of course False itself. # Every other value is Truthy. if True { |