Fun code of the day:

Fun code of the day:

var
  a, b: DynamicArray;
begin
  a := [0,1,2,0,1,2,3,4,5,6,7,8,9];
  b := [5,6,7,8,9,10,11,12,13,14];
  Writeln((a xor b).ToString);

What's the output?

Comments