fork download
  1. import java.util.List;
  2. import java.util.ArrayList;
  3.  
  4. class Idiom171AddAnElementAtTheEndOfAList {
  5. public static void main(String[] args) {
  6. List<String> s = new ArrayList<>();
  7. var x = "hello";
  8.  
  9. s.add(x);
  10.  
  11. System.out.println(s);
  12. }
  13. }
Success #stdin #stdout 0.08s 48892KB
stdin
Standard input is empty
stdout
[hello]