string 171 B

123456789101112
  1. void main() {
  2. int[] a = "2allo";
  3. a = "Hallo";
  4. test(a[0]);
  5. test(a[1]);
  6. test(a[2]);
  7. test(a[3]);
  8. test(a[4]);
  9. test(a);
  10. test(length(a));
  11. }