From ea248733d030ecc243dd43af906e34b8c528ba45 Mon Sep 17 00:00:00 2001 From: nitrix Date: Mon, 28 Oct 2019 22:11:39 +0100 Subject: [PATCH] add launch config to immediately run the code --- .vscode/launch.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d9159f8 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "configurations": [ + { + "type": "java", + "name": "CodeLens (Launch) - Klang", + "request": "launch", + "mainClass": "de.hsrm.compiler.Klang.Klang", + "projectName": "klang" + } + ] +} \ No newline at end of file