mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

僕はGoのstructとinterfaceの関係がよくわかってないらしいのがわかったんだけどどうすればわかるかねえ…

zunda

Shapeの配列の構造体リテラルむずかしいなw

type MultiShape struct {
shapes []Shape
}

:

r := Rectangle{x1: 0, y1: 0, x2: 10, y2: 10}
c := Circle{x: 0, y: 0, r: 5}
m := MultiShape{[]Shape{&r, &c}}