sdeleuze
02/13/2017, 2:36 PMval kotlinVersion: String by extra = "1.1.0-beta-38”
or val kotlinVersion: String = "1.1.0-beta-38” by extra
instead of forcing users to write that with 2 lines with a var
even if that's an immutable value (my use case is Gradle build files):
var kotlinVersion: String by extra
kotlinVersion = "1.1.0-beta-38"