changing method name for less confusion

This commit is contained in:
Steven Degutis
2012-03-30 15:25:39 -05:00
parent 7a11510181
commit 1d1a88d773

View File

@@ -2,12 +2,12 @@ package go_koans
type coolNumber int
func (cn coolNumber) double() int {
func (cn coolNumber) multiplyByTwo() int {
return int(cn) * 2
}
func aboutTypes() {
i := coolNumber(4)
assert(i == coolNumber(__int__)) // values can be converted between compatible types
assert(i.double() == __int__) // you can add methods on any type you define
assert(i.multiplyByTwo() == __int__) // you can add methods on any type you define
}