commit 1823f800c57e1bfea021bcaa9866396e1c08e674 Author: Maximilian Date: Wed Apr 10 17:07:28 2024 +0200 Initial commit diff --git a/Playground/.vscode/settings.json b/Playground/.vscode/settings.json new file mode 100644 index 0000000..e112a70 --- /dev/null +++ b/Playground/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "java.project.sourcePaths": ["src"], + "java.project.outputPath": "bin", + "java.project.referencedLibraries": [ + "lib/**/*.jar" + ] +} diff --git a/Playground/src/Playground.java b/Playground/src/Playground.java new file mode 100644 index 0000000..32c676f --- /dev/null +++ b/Playground/src/Playground.java @@ -0,0 +1,7 @@ +public class Playground { + + public static void main(String[] args) { + + } + +}