Example #1
0
func (c MathUtil) Mul(str1 string, str2 string) string {
	dec1 := dec.Dec{}
	dec1.SetString(str1)
	dec2 := dec.Dec{}
	dec2.SetString(str2)

	result := dec.Dec{}
	result.Mul(&dec1, &dec2)
	return result.String()
}