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
the debugger cannot find the values defined in an included module in the same directory.
main.ml
let sq x = x * x;;
run.ml
open Main
open Printf
let _ =
let _ = print_endline (sprintf "the square of 3 is not %d" (sq 4)) in
print_endline "something else"
now compile main.d.byte, run.d.byte, start a debug run of run.d.byte, place a breakpoint in the last line of run.ml and hover the mouse over the "sq" call.
result: "Cannot find module Main. "
was this supposed to be fixed recently?
The text was updated successfully, but these errors were encountered:
the debugger cannot find the values defined in an included module in the same directory.
main.ml
let sq x = x * x;;
run.ml
open Main
open Printf
let _ =
let _ = print_endline (sprintf "the square of 3 is not %d" (sq 4)) in
print_endline "something else"
now compile main.d.byte, run.d.byte, start a debug run of run.d.byte, place a breakpoint in the last line of run.ml and hover the mouse over the "sq" call.
result: "Cannot find module Main. "
was this supposed to be fixed recently?
The text was updated successfully, but these errors were encountered: