Hello,
I have two questions regarding Julia and the Julia extension for VS Code.
Coming from C++, I know I can use things like tasks.json
, c_cpp_properties.json
, and launch.json
to configure my code compilation, its execution, debugging, etc.
From reading around it seems I can still use launch.json
to establish my debugging options (like opening an integrated terminal on session start). And I think I’ve also determined the following:
-
Tasks.json
is not necessary or used for Julia. The extension comes with its own commands for building and running the code. Did I get that right? - Should or can I create
julia_properties.json
like I did for c++?
I’d appreciate a peer check and any thoughts/comments.
Thank you!