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