fork download
  1. public class Main {
  2. public static void main(String[] args) {
  3. StringBuilder text = new StringBuilder("Hello world!");
  4. String secondText = null;
  5. text.append(secondText);
  6. System.out.println(text);
  7. }
  8. }
Success #stdin #stdout 0.07s 54264KB
stdin
Standard input is empty
stdout
Hello world!null