package main import "fmt" type Shape interface { area() float64 } // todo: that great blog post on interfaces