<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class Final_test {

  public static void main(String args[]) {
    
    // variables declared as "final" cannot be reassigned
    
    final int k = 1;
    
    k = 2; // this will give your compiler a fit
    
  }

}
</pre></body></html>