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
Does println or output get shown anywhere? When selecting and evaluating the expression below, no output is show in the external repl, the output window or any other locations I checked within vscode.
(println"hi")
The text was updated successfully, but these errors were encountered:
Are you talking about printing the output somewhere, like when you do
(println"hi")
you see the message "hi" somewhere? println function returns nil. The extension omits nil results, but I think it's better to show them. Printing a message to stdout is a side-effect, I need to investigate how to catch it.
Does println or output get shown anywhere? When selecting and evaluating the expression below, no output is show in the external repl, the output window or any other locations I checked within vscode.
The text was updated successfully, but these errors were encountered: