From 01fff47b57fccf81039c8f7a27d1e3c6e40b6306 Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Sun, 29 Mar 2026 20:00:18 +0200 Subject: [PATCH] - Treballant en el debugger de mini --- .vscode/launch.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..da8aaa3 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug My Lua App", + "type": "myLuaApp", + "request": "launch", + "program": "${workspaceFolder}/mini_debug", + "cwd": "${workspaceFolder}" + + } + ] +}