package
0.0.0-20211127175118-db3ee8db598d
Repository: https://github.com/saraginov/learn-go.git
Documentation: pkg.go.dev
# Functions
Methods are Functions
a method is just a function with a receiver argument.
# Type aliases
We can declare a method on non-struct types, too
In AbsThree we use a numeric type float64
IMPORTANT :
You can only declare a method with a receiver whose type is defined in the same
package as the method.