VSCode changes

This commit is contained in:
2020-05-27 14:34:18 -05:00
parent d159a6e5ca
commit a2dc60284d
3 changed files with 36 additions and 0 deletions

27
Sorting/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,27 @@
{
// 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": "Debug (Launch) - Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "Debug (Launch)-AlgorithmTester<Sorting_fd7d5888>",
"request": "launch",
"mainClass": "AlgorithmTester",
"projectName": "Sorting_fd7d5888"
},
{
"type": "java",
"name": "Debug (Launch)-SortingTest",
"request": "launch",
"mainClass": "SortingTest"
}
]
}

View File

@@ -0,0 +1,9 @@
package Sorting;
public class AlgorithmTester{
public static void main(String[] args) {
System.out.println("Hello World");
}
}