Course of Raku / Essentials / Variables and data types essentials / Boolean type / Exercises
Triple negation
Problem
What is the output of the following program?
my $value = False;
say !!!$value;Make the corrections to the program if needed.
Course of Raku / Essentials / Variables and data types essentials / Boolean type / Exercises
What is the output of the following program?
my $value = False;
say !!!$value;Make the corrections to the program if needed.