aboutsummaryrefslogtreecommitdiff
path: root/challenge-107/perlboy1967/perl/Calc.pm
blob: bcb40d668743f710ce4efd976513133a2a314e11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Calc;

our $VERSION = 0.001;

use strict;
use warnings;

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

1;