`var` is horribly wrong, if they add only `var` we...
# random
c
var
is horribly wrong, if they add only
var
we'll have:
Copy code
final var a = "asdf";
// instead of 
final String a = "asdf";
final variable something feels fishy in this statement 💩 if they for some reason do not want to have both
var
and
val
, they should go with groovy's
def
.
auto
??? Is that a joke? I hope it is.