Content deleted Content added
Stevebroshar (talk | contribs) →Examples: Merge perl into scripting section |
Stevebroshar (talk | contribs) →Raku: Add Raku to scription section |
||
Line 402:
</syntaxhighlight>
====Block in Raku====
[[Raku (programming language)|Raku]] (previously called Perl 6) uses the same line comments and POD Documentation comments as regular [[Perl]]
{{cite web
| title = Perl 6 Documentation – Syntax (Comments)
| url = https://docs.perl6.org/language/syntax#Comments|access-date=2017-04-06
}}
</ref> It starts with <code>#`</code> and then an opening bracket character and ends with the matching closing bracket character.<ref name=perl6 /> For example:
<syntaxhighlight lang="perl6">
#`{{ "commenting out" this version
Line 425 ⟶ 424:
}
</syntaxhighlight>
====Block in Python====
|