lcfirst method

String lcfirst()

Changes the first character of the string to lower-case.

Implementation

String lcfirst() {
	return "${this[0].toLowerCase()}${this.substring(1)}";
}