Either; ```C A : B::C() { } ``` or ```C A : B = B::C() { } // Which is the same as A := B::C() { } ``` The second syntax is more inline with literal definition which is `a : b = c` i.e. `myNum : int = 5` or `myNum := 5`
Either;
or
The second syntax is more inline with literal definition which is
a : b = ci.e.myNum : int = 5ormyNum := 5