Take the following function:
func go() {
return someTablePresenter.getSomeData();
}
When I set a breakpoint in this function, is there a possibility to inspect the returned value?
The only way to inspect the returned datatable is to use a temporary variable. However, that's a bit inconvenient.
Question: Isn't there another way?


po someTablePresenter.getSomeData()in console