fork download
  1. class string_demo {
  2. public static void main(String args[])
  3. {
  4. String obj = "I" + "like" + "Java";
  5. System.out.println(obj);
  6. }
  7. }
Success #stdin #stdout 0.06s 2841600KB
stdin
Standard input is empty
stdout
IlikeJava