To be able to edit code and run cells, you need to run the notebook yourself. Where would you like to run the notebook?

This notebook takes about 20 seconds to run.

In the cloud (experimental)

Binder is a free, open source service that runs scientific notebooks in the cloud! It will take a while, usually 2-7 minutes to get a session.

On your computer

(Recommended if you want to store your changes.)

  1. Copy the notebook URL:
  2. Run Pluto

    (Also see: How to install Julia and Pluto)

  3. Paste URL in the Open box

Frontmatter

If you are publishing this notebook on the web, you can set the parameters below to provide HTML metadata. This is useful for search engines and social media.

Author 1
👀 Reading hidden code
mutable struct A
x
y
end
917 μs
👀 Reading hidden code
circ = let
one = A(1,2)
two = A(3,one)
one.y = two
end
39.1 μs
Expr
  head: Symbol =
  args: Array{Any}((2,))
    1: Expr
      head: Symbol call
      args: Array{Any}((2,))
        1: Symbol f
        2: Symbol x
    2: Expr
      head: Symbol block
      args: Array{Any}((2,))
        1: LineNumberNode
          line: Int64 1
          file: Symbol /home/runner/work/disorganised-mess/disorganised-mess/Dump.jl#==#6ffb144e-009f-11eb-083d-3f9cbe0bcd9a
        2: Int64 1123
👀 Reading hidden code
Dump(:(f(x) = 1123))
158 ms
Main.workspace#2.A
  x: Int64 1
  y: Main.workspace#2.A
    x: Int64 3
    y: Main.workspace#2.A#= circular reference @-2 =#
👀 Reading hidden code
4.5 ms
Dump
Dump(x; maxdepth=8)

Show every part of the representation of a value. The depth of the output is truncated at maxdepth.

This is a variant of Base.dump that returns the representation directly, instead of printing it to stdout.

"""
Dump(x; maxdepth=8)

Show every part of the representation of a value. The depth of the output is truncated at maxdepth.

This is a variant of [`Base.dump`](@ref) that returns the representation directly, instead of printing it to stdout.
"""
function Dump(x; maxdepth=8)
sprint() do io
dump(io, x; maxdepth=maxdepth)
end |> Text
end
👀 Reading hidden code
2.5 ms

👀 Reading hidden code
68.7 μs