fork download
  1. class Main {
  2. public static void main (String[] args) {
  3. Object[] array = new Object[5];
  4. array[0] = 0;
  5. array[1] = "texto";
  6. array[2] = 12.34;
  7. array[3] = 98.76f;
  8. array[4] = 1;
  9. }
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/130707/101
Success #stdin #stdout 0.1s 32540KB
stdin
Standard input is empty
stdout
Standard output is empty