<quote>
Hooray, you passed.
You shot a round of %..02f strokes.
</quote>

Change line 30 form:

        $total_score = sprintf "%..02f", $total_score;

to

        $total_score = sprintf "%.02f", $total_score;

--Ala

Reply via email to