fork download
  1. class Tester
  2. {
  3. public static void main (String[] args)
  4. {
  5. String catch22 = "catch_" + 22; //result: “catch_22”
  6. System.out.println(catch22);
  7. }
  8. }
Success #stdin #stdout 0.07s 380160KB
stdin
Standard input is empty
stdout
catch_22