RosettaCodeData/Task/Assertions/Perl/assertions-5.pl

5 lines
79 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
is $a, 42;
ok $a == 42;
cmp_ok $a, '==', 42, 'The answer should be 42';
# etc.