todos
todos copied to clipboard
Perl: Support custom delimiter strings
Perl supports strings with any delimiter. https://www.perltutorial.org/perl-string/
#!/usr/bin/perl
use warnings;
use strict;
my $s = q^A string with different delimiter ^;
print($s,"\n");
Related #833