RosettaCodeData/Task/Enforced-immutability/Java/enforced-immutability-1.java
2023-07-01 13:44:08 -04:00

4 lines
116 B
Java

final int immutableInt = 4;
int mutableInt = 4;
mutableInt = 6; //this is fine
immutableInt = 6; //this is an error