fork download
  1. class ExampleFive {
  2. public static void main(String[] args) {
  3. final int i = 22;
  4. byte b = i;
  5. System.out.println(i + ", " + b);
  6. }
  7. }
Success #stdin #stdout 0.11s 36088KB
stdin
Standard input is empty
stdout
22, 22