3 lines
78 B
Raku
3 lines
78 B
Raku
my $s = '';
|
|
say 'String is empty' unless $s;
|
|
say 'String is not empty' if $s;
|