RosettaCodeData/Task/Empty-string/Perl-6/empty-string.pl6

4 lines
78 B
Raku

my $s = '';
say 'String is empty' unless $s;
say 'String is not empty' if $s;