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

5 lines
79 B
Perl
Raw Permalink Normal View History

2013-04-09 00:46:50 -07:00
is $a, 42;
ok $a == 42;
cmp_ok $a, '==', 42, 'The answer should be 42';
# etc.