fork(1) download
  1. class Test {
  2. public static void Main()
  3. {
  4. int[,,] arr = new int[,,]
  5. {
  6. {
  7. {0, 1},
  8. {10, 11}
  9. },
  10. {
  11. {100, 101},
  12. {110, 111}
  13. }
  14. };
  15. }
  16. }
Success #stdin #stdout 0.02s 36720KB
stdin
Standard input is empty
stdout
Standard output is empty