How this is possible? How am I able to change variables marked as final?
public class Main
{
public static void main(String[] args)
{
final int NUM;
NUM = 22;
NUM = 33;
System.out.println(NUM);
}
}
I was using AIDE app in Android... it compiled successfully and printed 33
.