|
|
|
|
|
by teo_zero
873 days ago
|
|
Interesting, but how do you define a function that returns an array? Maybe: T f(args)[..] { body }
This would be hard to parse. Then what about: T[..] f(args) { body }
But if adding [] after T is allowed in function declaration, then why not for arrays as well: T[..] a;
|
|