fork download
  1. procedure main()
  2. x := &null
  3. write(image(x), ": type = ", type(x))
  4.  
  5. ary := list(3)
  6. x := ary[2]
  7. write(image(x), ": type = ", type(x))
  8. end
Success #stdin #stdout 0.01s 5328KB
stdin
Standard input is empty
stdout
&null: type = null
&null: type = null