You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function gg(x)
z = :foo
b = "fdsf"
q = Expr(:call, sin, 1)
print(x)
x = 2
end
Here is a case where we are at the last statement with the debugger:
Breakpoint Hit: gg(x) in Main at /mnt/c/Users/Kristoffer/Debugging/file.jl:2 q = Expr(:call, sin, 1)
print(x)
➧ x = 2
end
Vars: x, z, b
Commands: CC (Continue), SI (Step In), SN (Step Next), SO (Step Out), XX (Abort)
iron>
x, z and b are defined but not q?
The text was updated successfully, but these errors were encountered:
Consider
Here is a case where we are at the last statement with the debugger:
x
,z
andb
are defined but notq
?The text was updated successfully, but these errors were encountered: