Windows 11 need helloworld project that debugs on VSCode
Sergey
kornburn at yandex.ru
Sun Dec 7 22:48:53 UTC 2025
On Sunday, 7 December 2025 at 22:44:27 UTC, Sergey wrote:
> On Sunday, 7 December 2025 at 22:27:05 UTC, Brother Bill wrote:
>> Did vanilla install for Window 11 from dlang.org.
>
> Seems fine.
> Maybe just check that you also have tasks.json:
> ```
> {
> "version": "2.0.0",
> "tasks": [
> {
> "label": "build",
> "command": "dub",
> "args": [
> "build"
> ]
> }
> ]
> }
> ```
>
> And that CodeLLDB extension is installed in the VSCode.
Also to launch.json try to add:
```
"console": "internalConsole",
```
More information about the Digitalmars-d-learn
mailing list