diff options
author | Geoff Liu <g@geoffliu.me> | 2015-08-30 14:22:11 -0600 |
---|---|---|
committer | Geoff Liu <g@geoffliu.me> | 2015-08-30 14:22:11 -0600 |
commit | eb7e58d5fc649ed2713c7685539bd5edcd9e8ade (patch) | |
tree | 72a9fe5106bed0735089b5c7a2b22540f7ebb3a7 /perl6.html.markdown | |
parent | 1d1def16a5d7925bb8f7fba7dc49182e33359e85 (diff) | |
parent | b124fd58df56a5e1ee9925481fbde1f22ccfb386 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'perl6.html.markdown')
-rw-r--r-- | perl6.html.markdown | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/perl6.html.markdown b/perl6.html.markdown index 3bb87916..af545793 100644 --- a/perl6.html.markdown +++ b/perl6.html.markdown @@ -7,10 +7,13 @@ contributors: - ["Nami-Doc", "http://github.com/Nami-Doc"] --- -Perl 6 is a highly capable, feature-rich programming language made for the -upcoming hundred years. +Perl 6 is a highly capable, feature-rich programming language made for at +least the next hundred years. -Perl 6 runs on [the MoarVM](http://moarvm.com) and the JVM. +The primary Perl 6 compiler is called [Rakudo](http://rakudo.org), which runs on +the JVM and [the MoarVM](http://moarvm.com) and +[prior to March 2015](http://pmthium.com/2015/02/suspending-rakudo-parrot/), +[the Parrot VM](http://parrot.org/). Meta-note : the triple pound signs are here to denote headlines, double paragraphs, and single notes. @@ -210,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 { @@ -1041,7 +1044,7 @@ postcircumfix:<{ }>(%h, $key, :delete); # (you can call operators like that) # *everything* -- with great power comes great responsibility) ## Meta operators ! -# Oh boy, get ready. Get ready, because we're dwelving deep +# Oh boy, get ready. Get ready, because we're delving deep # into the rabbit's hole, and you probably won't want to go # back to other languages after reading that. # (I'm guessing you don't want to already at that point). |