004_arrays.patch 306 B

123456789101112
  1. 30c30
  2. < const some_primes = [_]u8{ 1, 3, 5, 7, 11, 13, 17, 19 };
  3. ---
  4. > var some_primes = [_]u8{ 1, 3, 5, 7, 11, 13, 17, 19 };
  5. 43c43
  6. < const fourth = some_primes[???];
  7. ---
  8. > const fourth = some_primes[3];
  9. 47c47
  10. < const length = some_primes.???;
  11. ---
  12. > const length = some_primes.len;