diff --git a/Sorting/Java_SortingAlgorithms_TutoringProject.code-workspace b/APCompSci.code-workspace similarity index 100% rename from Sorting/Java_SortingAlgorithms_TutoringProject.code-workspace rename to APCompSci.code-workspace diff --git a/Sorting/.vscode/launch.json b/Sorting/.vscode/launch.json new file mode 100644 index 0000000..a87ef49 --- /dev/null +++ b/Sorting/.vscode/launch.json @@ -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", + "request": "launch", + "mainClass": "AlgorithmTester", + "projectName": "Sorting_fd7d5888" + }, + { + "type": "java", + "name": "Debug (Launch)-SortingTest", + "request": "launch", + "mainClass": "SortingTest" + } + ] +} \ No newline at end of file diff --git a/Sorting/AlgorithmTester.java b/Sorting/AlgorithmTester.java index e69de29..168cfb9 100644 --- a/Sorting/AlgorithmTester.java +++ b/Sorting/AlgorithmTester.java @@ -0,0 +1,9 @@ +package Sorting; + +public class AlgorithmTester{ + + public static void main(String[] args) { + System.out.println("Hello World"); + } + +} \ No newline at end of file