diff options
author | Jack Kuan <jack.kuan@thescore.com> | 2015-09-23 00:04:02 -0400 |
---|---|---|
committer | Jack Kuan <jack.kuan@thescore.com> | 2015-09-23 00:04:02 -0400 |
commit | 62f27af4c38f546f29fcf095fc653989b0667908 (patch) | |
tree | f9e93f76f14182edf81da16327e6fbece5d69195 /perl6.html.markdown | |
parent | 6cdba66ef506bfdf77efd12690f892ba7e3f0d82 (diff) |
Update perl6.html.markdown
Diffstat (limited to '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 { |