> In other environments i'd use a debugger (and some breakpoints) or some > tools for tracing. Or the find function in the text editor. > In Julia programs due to multiple dispatch the function name tells me only > half of the story which part of the source to read, i need the type of the > argument also.
You probably know this already... For this you could insert a @which fn(arg1, arg2) into the code. Also @show can help with debugging.
