Adding a breakpoint in line 2 of
function (@main)(args)
println("hello world")
end
and starting the debugger in vscode does not break in line 2. It seems that all code which is placed inside of @main or called from @main does not support breakpoints. So this is basically the debugger not working in the whole program.
Adding a breakpoint in line 2 of
and starting the debugger in vscode does not break in line 2. It seems that all code which is placed inside of @main or called from
@maindoes not support breakpoints. So this is basically the debugger not working in the whole program.