fork(28) download
  1. x = [7]
  2. y = x
  3. y[0] = 8
  4. print x
Success #stdin #stdout 0.02s 4652KB
stdin
Standard input is empty
stdout
[8]