aboutsummaryrefslogtreecommitdiff
path: root/challenge-107/james-smith/perl/Calc_Use.pm
blob: ee777771caefe66730b3de0e17607ed4af75c049 (plain)
1
2
3
4
5
6
7
8
9
10
11
package Calc_Use;

use strict;
use warnings;

sub new { bless {}, shift; }
sub add { }
sub mul { }
sub div { }

1;