10 lines
128 B
Raku
10 lines
128 B
Raku
my $x = 1; # true
|
|
|
|
my $true_or_false;
|
|
|
|
if ($x) {
|
|
$true_or_false = 'true';
|
|
}
|
|
else {
|
|
$true_or_false = 'false';
|
|
}
|