fork download
  1. class Tester
  2. {
  3. public static void main (String[] args)
  4. {
  5. String[] array = new String[3]; //make an array with 3 slots
  6. array[0] = "test"; //change first slot to hold “test”
  7. System.out.println(array[0]); //print it
  8. }
  9. }
Success #stdin #stdout 0.07s 380224KB
stdin
Standard input is empty
stdout
test