✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Язык Go. Дан фрагмент кода:
type A struct{
value
int}
type Printer interface{
()
}
func main(){
var
obj A
p := Printer(&obj)
p.
print()
}
Что нужно добавить, чтобы он стал рабочим?