interface Animal { speak(s string) } struct Cat {} fn (c Cat) speak() {} fn main() { mut animals := []Animal{} mut cats := []Cat{} animals << cats }