// Dart语言const关键字
void main() { 
   final v1 = 12; 
   const v2 = 13; 
   const v3 = 14; 
   v2 = 12; 
}