fork download
  1. procedure main()
  2. tbl := table(0)
  3. tbl["a"] := 1
  4. tbl["b"] := 2
  5. tbl["c"] := 3
  6. every x := key(tbl) do
  7. write(image(x), ":", image(tbl[x]))
  8. end
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
"c":3
"a":1
"b":2