Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 3888fc9314dfb7528cd55daf17d6dec2 > files > 27

perl-Inline-0.820.0-1.mga7.noarch.rpm

use strict;
use Test;

BEGIN {
    plan(tests => 2,
         todo => [],
         onfail => sub {},
        );
}

use Math::Simple qw(add subtract);

ok(add(5, 7) == 12);
ok(subtract(5, 7) == -2);