You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go.nvim/lua/tests/fixtures/rename/interface.go

41 lines
533 B
Go

// https://gobyexample.com/interfaces
//
package main
import (
"fmt"
)
type Geometry interface {
Area() float64
perim() float64
}
type rect struct {
width, height float64
}
func (r rect) Area() float64 {
return r.width * r.height
}
func (r rect) perim() float64 {
return 2*r.width + 2*r.height
}
func (r rect) test_print() {
fmt.Println(r.perim())
}
func measure(g Geometry) {
fmt.Println(g)
fmt.Println(g.Area())
fmt.Println(g.perim())
}
func main() {
r := rect{width: 3, height: 4}
measure(r)
r.test_print()
}