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

4 lines
78 B
Raku
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
my $s = '';
2015-11-18 06:14:39 +00:00
say 'String is empty' unless $s;
say 'String is not empty' if $s;