mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-05 14:28:31 +00:00
Switch to perl to see if it fixes comments ...
This commit is contained in:
parent
6a33cbd3ae
commit
3d81df43b1
@ -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).
|
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
|
# Single line comment start with a pound
|
||||||
|
|
||||||
|
#`(
|
||||||
|
Multiline comments use #` and a quoting construct. (), [], {}, 「」, etc, will work.
|
||||||
|
)
|
||||||
|
|
||||||
### Variables
|
### Variables
|
||||||
|
|
||||||
# In Perl 6, you declare a lexical variable using `my`
|
# In Perl 6, you declare a lexical variable using `my`
|
||||||
|
Loading…
Reference in New Issue
Block a user