fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. class string_demo {
  4. public static void main(String args[])
  5. {
  6. String obj = "I" + "like" + "Java";
  7. System.out.println(obj);
  8. }
  9. }
Success #stdin #stdout 0.1s 321216KB
stdin
Standard input is empty
stdout
IlikeJava