package For_test; use strict; sub two { return 2; } sub three { return 4; } =begin testing ok(two() == 2); ok(three() == 3); =end testing =cut 1