[Kotlin] val for const variable

using 'var', variable can be reassigned. 

using 'val', variable cannot be ressiagned. the same as Javascript 'const'.

原文地址:https://www.cnblogs.com/Answer1215/p/13796049.html