diff options
author | Nami-Doc <vendethiel@hotmail.fr> | 2014-07-16 20:08:01 +0200 |
---|---|---|
committer | Nami-Doc <vendethiel@hotmail.fr> | 2014-07-16 20:08:01 +0200 |
commit | 3d81df43b15debcf3643a1977a83c5051b25803b (patch) | |
tree | 2a06442f1deeb5dd9d83baafee249d565d387224 | |
parent | 6a33cbd3aee825f4cc16c82c15963c66486d1834 (diff) |
Switch to perl to see if it fixes comments ...
-rw-r--r-- | perl6.html.markdown | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/perl6.html.markdown b/perl6.html.markdown index 7029de27..830b8182 100644 --- a/perl6.html.markdown +++ b/perl6.html.markdown @@ -11,9 +11,13 @@ Perl 6 is a highly capable, feature-rich programming language made for the upcom Perl 6 runs on [the Parrot VM](http://parrot.org/), the JVM and [the MoarVM](http://moarvm.com). -```perl6 +```perl # Single line comment start with a pound +#`( + Multiline comments use #` and a quoting construct. (), [], {}, 「」, etc, will work. +) + ### Variables # In Perl 6, you declare a lexical variable using `my` |