From a2dc60284da645a9f500e28c8395f5e9c746eae8 Mon Sep 17 00:00:00 2001 From: Eugene Fischer Date: Wed, 27 May 2020 14:34:18 -0500 Subject: [PATCH] VSCode changes --- ...code-workspace => APCompSci.code-workspace | 0 Sorting/.vscode/launch.json | 27 +++++++++++++++++++ Sorting/AlgorithmTester.java | 9 +++++++ 3 files changed, 36 insertions(+) rename Sorting/Java_SortingAlgorithms_TutoringProject.code-workspace => APCompSci.code-workspace (100%) create mode 100644 Sorting/.vscode/launch.json 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