fork download
  1. test = {"index"}
  2. test2 = {}
  3. test2[test[1]] = "text"
  4. print(test[1])
  5. print(test2.index)
Success #stdin #stdout 0s 4380KB
stdin
Standard input is empty
stdout
index
text