RosettaCodeData/Task/Assertions/Perl/assertions-5.pl
2023-07-01 13:44:08 -04:00

4 lines
79 B
Raku

is $a, 42;
ok $a == 42;
cmp_ok $a, '==', 42, 'The answer should be 42';
# etc.