Rosetta Code/Fix code tags: Difference between revisions

m
→‎{{header|Raku}}: perl6 -> raku
mNo edit summary
m (→‎{{header|Raku}}: perl6 -> raku)
Line 1,261:
=={{header|Raku}}==
(formerly Perl 6)
<syntaxhighlight lang="raku" perl6line>my @langs = <
abap actionscript actionscript3 ada apache applescript apt_sources
asm asp autoit avisynth bash basic4gl bf blitzbasic bnf boo c caddcl
Line 1,286:
s:g [ '<code '(.+?) '>' (.*?) '</code>' ] = "<lang $0>{$1}</"~"lang>";
 
.say;</langsyntaxhighlight>
<syntaxhighlight lang="raku" perl6line>use v6;
 
constant @langs = < abap actionscript actionscript3 ada … >;
Line 1,299:
'lang' ~ " " x *<need-add-space>.so,
:g,
).print</langsyntaxhighlight>
 
=={{header|REXX}}==
10,327

edits