RosettaCodeData/Task/Assertions/Perl/assertions-5.pl
Ingy döt Net 80737d5a6a new tasks
2013-04-09 00:46:50 -07:00

4 lines
79 B
Raku

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