Составные типы
type test struct {
a float64
b MySomeInterface
}// Одно и то же:
type test struct {
a float64
b float64
}
type test struct {
a, b float64
}Last updated
type test struct {
a float64
b MySomeInterface
}// Одно и то же:
type test struct {
a float64
b float64
}
type test struct {
a, b float64
}Last updated