From 1823f800c57e1bfea021bcaa9866396e1c08e674 Mon Sep 17 00:00:00 2001 From: Maximilian Date: Wed, 10 Apr 2024 17:07:28 +0200 Subject: [PATCH] Initial commit --- Playground/.vscode/settings.json | 7 +++++++ Playground/src/Playground.java | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 Playground/.vscode/settings.json create mode 100644 Playground/src/Playground.java 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) { + + } + +}