package Calc; use strict; use warnings; our $x = 1; sub new { bless {}, shift; } sub add { } sub mul { } sub div { } 1;