kob-h

Results 1 issues of kob-h

I have the following code: ``` package mutation type Calculator struct { } func (c *Calculator) Multiply(a int, b int) int { return a * b } ``` ``` package...