Files
COMP210/.vscode/launch.json
2023-09-01 17:22:16 -04:00

35 lines
865 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "HelloWorld",
"request": "launch",
"mainClass": "assn01.HelloWorld",
"projectName": "COMP210_238a5b6"
},
{
"type": "java",
"name": "Part2",
"request": "launch",
"mainClass": "assn01.Part2",
"projectName": "COMP210_238a5b6"
},
{
"type": "java",
"name": "HelloWorld(1)",
"request": "launch",
"mainClass": "hello.HelloWorld",
"projectName": "COMP210_238a5b6"
}
]
}