RosettaCodeData/Task/Empty-string/Perl-6/empty-string.pl6
2015-11-18 06:14:39 +00:00

3 lines
78 B
Raku

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