a (generic function with 1 method)
👀 Reading hidden code
Arrow keys
Running cells
Run on Enter makes me a bit nervous in the REPL, so maybe Run on Shift+Enter, and normally cells just stay "dirty", and they all run when you do Ctrl+S (like today).
Line numbers
Not sure - not really necessary since we added interactive stack traces anyways
Borders around cells - spacing between cells
👀 Reading hidden code
👀 Reading hidden code
Enter cell code...
a(; b, c) in Main.workspace#3 at /home/runner/work/disorganised-mess/disorganised-mess/withmorebits.jl#==#1dc09292-adb8-11ea-17c4-c52b3f0ef25e:1
👀 Reading hidden code
typename(typeof(a))
👀 Reading hidden code
:a
👀 Reading hidden code
0x61
0x73
0x64
0x66
👀 Reading hidden code
d = "asdf" |> codeunits |> collect
"a"
1
pa = collect(Dict("a"=>1))[1]
👀 Reading hidden code
👀 Reading hidden code
InexactError: trunc(UInt8, 300)
Here is what happened, the most recent locations are first:
- throw_inexacterror
(f::Symbol, #unused#::Type{UInt8}, val::Int64) from boot.jl:612 - checked_trunc_uintfrom boot.jl:642
- toUInt8from boot.jl:704
- UInt8
(x::Int64) from boot.jl:764 - from This cell: line 1
(UInt8(300) + UInt8(200)) |> Int64
(UInt8(300) + UInt8(200)) |> Int64
👀 Reading hidden code
using BenchmarkTools
👀 Reading hidden code
InexactError: trunc(Int32, 3000000000)
Here is what happened, the most recent locations are first:
- throw_inexacterror
(f::Symbol, #unused#::Type{Int32}, val::Int64) from boot.jl:612 - checked_trunc_sintfrom boot.jl:634
- toInt32from boot.jl:671
- Int32
(x::Int64) from boot.jl:761 - from This cell: line 1
Int32(3000000000) + Int32(1000000000)
Int32(3000000000) + Int32(1000000000)
👀 Reading hidden code
:a
0xbc
0x50
0x8b
0xf6
0x5b
0x36
0xac
0x6a
0x85
0x8c
:b
0x01
ra = Dict(
:a => rand(UInt8, 100),
:b => 0x01
)
👀 Reading hidden code
withmorebits (generic function with 3 methods)
begin
function withmorebits(d::Dict)
Dict((
p.first => withmorebits(p.second)
for p in d))
end
function withmorebits(x::T) where T<:Integer
Int64(x)
end
function withmorebits(x::Vector)
withmorebits.(x)
end
end
👀 Reading hidden code
:a
188
80
139
246
91
54
172
106
133
140
:b
1
withmorebits(ra)
👀 Reading hidden code
1
1
1
fill(1,3)
👀 Reading hidden code
1048576
512*512*4
👀 Reading hidden code