Jump to content

Binary strings: Difference between revisions

m
→‎{{header|Raku}}: Fix Perl6 -> Raku in comments
m (→‎{{header|Raku}}: Fix Perl6 -> Raku in comments)
Line 2,801:
(formerly Perl 6)
{{Works with|rakudo|2018.03}}
<lang perl6># Perl 6Raku is perfectly fine with NUL *characters* in strings:
my Str $s = 'nema' ~ 0.chr ~ 'problema!';
say $s;
 
# However, Perl 6Raku makes a clear distinction between strings
# (i.e. sequences of characters), like your name, or …
my Str $str = "My God, it's full of chars!";
10,333

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.