```cmd
C:\Users\Lenovo>where python
H:\Miniconda3\python.exe
C:\Users\Lenovo\AppData\Local\Programs\Python\Python312\python.exe

C:\Users\Lenovo>where gcc
D:\mingw64\mingw64\bin\gcc.exe
H:\Qt\Tools\mingw1120_64\bin\gcc.exe

C:\Users\Lenovo>where g++
D:\mingw64\mingw64\bin\g++.exe
H:\Qt\Tools\mingw1120_64\bin\g++.exe

C:\Users\Lenovo>where go
F:\golang\bin\go.exe

C:\Users\Lenovo>where node
F:\nodejs\node.exe

C:\Users\Lenovo>where java
C:\Windows\System32\java.exe
H:\java\bin\java.exe
C:\Program Files\Microsoft\jdk-17.0.10.7-hotspot\bin\java.exe


C:\Users\Lenovo>where cmake
D:\cmake-3.31.0-rc1-windows-x86_64_2\cmake-3.31.0-rc1-windows-x86_64\bin\cmake.exe
H:\Qt\Tools\CMake_64\bin\cmake.exe


C:\Users\Lenovo>where php
F:\php-8.4.12-Win32-vs17-x64\php.exe

C:\Users\Lenovo>where mysql
C:\Program Files\MySQL\MySQL Server 8.0\bin\mysql.exe

C:\Users\Lenovo>where git
D:\Git\cmd\git.exe
```





## C++

```
    "configurations": [
        {
            "name": ".NET Core Launch (console)",
            "type": "coreclr",
            "request": "launch",
            "preLaunchTask": "build",
            "program": "${workspaceFolder}/bin/Debug/net8.0/test.dll",
            "args": [],
            "cwd": "${workspaceFolder}",
            "console": "externalTerminal",
            "stopAtEntry": false
        },
        {
            "name": ".NET Core Attach",
            "type": "coreclr",
            "request": "attach"
        },
        
        tasks.json
{
    "version": "2.0.0",
    "tasks": [
        {
            "type": "dotnet",
            "task": "build",
            "group": "build",
            "problemMatcher": [],
            "label": "build"
        }
    ]
}

launch.json
{
    "configurations": [
        {
            "type": "coreclr",
            "request": "launch",
            "name": "Launch .NET Core App",
            "program": "${workspaceFolder}/bin/Debug/net8.0/pat.dll",
            "args": [],
            "cwd": "${workspaceFolder}",
            "stopAtEntry": false,
            "preLaunchTask": "build",
            "console": "externalTerminal"
        }
    ]
}
```

