it's generally considered good practice to put const and immutable on the right-hand side.
I would also say that putting function attributes on a separate line
above the function is fairly common:
const @property pure
int foo() {
return 3;
}
--
Simen
