//allows for variables to be unchanged throught a program final float constant = 12; println(constant); // Prints "12" to the console constant += 6; // ERROR! It's not possible to change a "final" value